[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | e6b5bc2 | 2011-09-08 22:01:56 | [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 | |||||
[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 5 | #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_POSIX_H_ |
6 | #define CHROME_BROWSER_CHROME_BROWSER_MAIN_POSIX_H_ | ||||
[email protected] | e6b5bc2 | 2011-09-08 22:01:56 | [diff] [blame] | 7 | |
[email protected] | e6b5bc2 | 2011-09-08 22:01:56 | [diff] [blame] | 8 | #include "chrome/browser/chrome_browser_main.h" |
9 | |||||
10 | class ChromeBrowserMainPartsPosix : public ChromeBrowserMainParts { | ||||
11 | public: | ||||
Gabriel Charette | fbeeb1c | 2021-11-10 20:50:06 | [diff] [blame] | 12 | ChromeBrowserMainPartsPosix(content::MainFunctionParams parameters, |
Xi Han | 85079c2 | 2019-04-18 21:43:05 | [diff] [blame] | 13 | StartupData* startup_data); |
[email protected] | e6b5bc2 | 2011-09-08 22:01:56 | [diff] [blame] | 14 | |
Peter Boström | fadb175 | 2021-09-30 19:17:01 | [diff] [blame] | 15 | ChromeBrowserMainPartsPosix(const ChromeBrowserMainPartsPosix&) = delete; |
16 | ChromeBrowserMainPartsPosix& operator=(const ChromeBrowserMainPartsPosix&) = | ||||
17 | delete; | ||||
18 | |||||
[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 19 | // content::BrowserMainParts overrides. |
Scott Violet | 9068b4df | 2018-01-12 16:44:21 | [diff] [blame] | 20 | int PreEarlyInitialization() override; |
Gabriel Charette | 09c6a96e | 2021-05-17 14:52:59 | [diff] [blame] | 21 | void PostCreateMainMessageLoop() override; |
[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 22 | |
23 | // ChromeBrowserMainParts overrides. | ||||
Daniel Cheng | a542fca | 2014-10-21 09:51:29 | [diff] [blame] | 24 | void ShowMissingLocaleMessageBox() override; |
[email protected] | e6b5bc2 | 2011-09-08 22:01:56 | [diff] [blame] | 25 | }; |
26 | |||||
[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 27 | #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_POSIX_H_ |