OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ | 5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ |
6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ | 6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ |
7 | 7 |
8 // Interface class for Parts owned by ChromeBrowserMainParts. | 8 // Interface class for Parts owned by ChromeBrowserMainParts. |
9 // The default implementation for all methods is empty. | 9 // The default implementation for all methods is empty. |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 virtual void PostMainMessageLoopStart() {} | 33 virtual void PostMainMessageLoopStart() {} |
34 | 34 |
35 // MainMessageLoopRun methods. | 35 // MainMessageLoopRun methods. |
36 virtual void PreCreateThreads() {} | 36 virtual void PreCreateThreads() {} |
37 virtual void PreProfileInit() {} | 37 virtual void PreProfileInit() {} |
38 virtual void PostProfileInit() {} | 38 virtual void PostProfileInit() {} |
39 virtual void PreBrowserStart() {} | 39 virtual void PreBrowserStart() {} |
40 virtual void PostBrowserStart() {} | 40 virtual void PostBrowserStart() {} |
41 virtual void PreMainMessageLoopRun() {} | 41 virtual void PreMainMessageLoopRun() {} |
42 virtual void PostMainMessageLoopRun() {} | 42 virtual void PostMainMessageLoopRun() {} |
| 43 |
| 44 protected: |
| 45 ChromeBrowserMainExtraParts() = default; |
43 }; | 46 }; |
44 | 47 |
45 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ | 48 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ |
OLD | NEW |