blob: 2b54a9485c3ea59fe09b81de1ae6a96935064e86 [file] [log] [blame]
Greg Thompson85bd488c2017-06-08 09:18:111// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_WIN_H_
6#define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_WIN_H_
7
8#include <memory>
9
10#include "base/macros.h"
11#include "chrome/browser/browser_process_platform_part_base.h"
12
13class DidRunUpdater;
14
15namespace base {
16class CommandLine;
17}
18
19class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase {
20 public:
21 BrowserProcessPlatformPart();
22 ~BrowserProcessPlatformPart() override;
23
24 // BrowserProcessPlatformPartBase:
25 void PlatformSpecificCommandLineProcessing(
26 const base::CommandLine& command_line) override;
27
28 private:
29 std::unique_ptr<DidRunUpdater> did_run_updater_;
30
31 DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart);
32};
33
34#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_WIN_H_