Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2017 The Chromium Authors |
Greg Thompson | 85bd488c | 2017-06-08 09:18:11 | [diff] [blame] | 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 | |
Greg Thompson | 85bd488c | 2017-06-08 09:18:11 | [diff] [blame] | 8 | #include "chrome/browser/browser_process_platform_part_base.h" |
Greg Thompson | 18fef50 | 2021-06-18 12:44:44 | [diff] [blame] | 9 | #include "chrome/browser/google/did_run_updater_win.h" |
| 10 | #include "third_party/abseil-cpp/absl/types/optional.h" |
Greg Thompson | 85bd488c | 2017-06-08 09:18:11 | [diff] [blame] | 11 | |
| 12 | class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase { |
| 13 | public: |
| 14 | BrowserProcessPlatformPart(); |
Greg Thompson | 18fef50 | 2021-06-18 12:44:44 | [diff] [blame] | 15 | BrowserProcessPlatformPart(const BrowserProcessPlatformPart&) = delete; |
| 16 | BrowserProcessPlatformPart& operator=(const BrowserProcessPlatformPart&) = |
| 17 | delete; |
Greg Thompson | 85bd488c | 2017-06-08 09:18:11 | [diff] [blame] | 18 | ~BrowserProcessPlatformPart() override; |
| 19 | |
| 20 | // BrowserProcessPlatformPartBase: |
| 21 | void PlatformSpecificCommandLineProcessing( |
| 22 | const base::CommandLine& command_line) override; |
| 23 | |
| 24 | private: |
Greg Thompson | 18fef50 | 2021-06-18 12:44:44 | [diff] [blame] | 25 | absl::optional<DidRunUpdater> did_run_updater_; |
Greg Thompson | 85bd488c | 2017-06-08 09:18:11 | [diff] [blame] | 26 | }; |
| 27 | |
| 28 | #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_WIN_H_ |