[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 | |
8 | #include "chrome/browser/chrome_browser_main.h" | ||||
9 | |||||
10 | class ChromeBrowserMainPartsPosix : public ChromeBrowserMainParts { | ||||
11 | public: | ||||
[email protected] | 4573fbd | 2011-10-31 20:25:18 | [diff] [blame] | 12 | explicit ChromeBrowserMainPartsPosix( |
13 | const content::MainFunctionParams& parameters); | ||||
[email protected] | e6b5bc2 | 2011-09-08 22:01:56 | [diff] [blame] | 14 | |
[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 15 | // content::BrowserMainParts overrides. |
Daniel Cheng | a542fca | 2014-10-21 09:51:29 | [diff] [blame] | 16 | void PreEarlyInitialization() override; |
17 | void PostMainMessageLoopStart() override; | ||||
[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 18 | |
19 | // ChromeBrowserMainParts overrides. | ||||
Daniel Cheng | a542fca | 2014-10-21 09:51:29 | [diff] [blame] | 20 | void ShowMissingLocaleMessageBox() override; |
[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 21 | |
22 | private: | ||||
23 | DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsPosix); | ||||
[email protected] | e6b5bc2 | 2011-09-08 22:01:56 | [diff] [blame] | 24 | }; |
25 | |||||
[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 26 | #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_POSIX_H_ |