Greg Thompson | 85bd488c | 2017-06-08 09:18:11 | [diff] [blame^] | 1 | // 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 | |
| 13 | class DidRunUpdater; |
| 14 | |
| 15 | namespace base { |
| 16 | class CommandLine; |
| 17 | } |
| 18 | |
| 19 | class 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_ |