| 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 15 matching lines...) Expand all Loading... |
| 26 virtual void PostEarlyInitialization() {} | 26 virtual void PostEarlyInitialization() {} |
| 27 | 27 |
| 28 // ToolkitInitialized methods. | 28 // ToolkitInitialized methods. |
| 29 virtual void ToolkitInitialized() {} | 29 virtual void ToolkitInitialized() {} |
| 30 | 30 |
| 31 // MainMessageLoopStart methods. | 31 // MainMessageLoopStart methods. |
| 32 virtual void PreMainMessageLoopStart() {} | 32 virtual void PreMainMessageLoopStart() {} |
| 33 virtual void PostMainMessageLoopStart() {} | 33 virtual void PostMainMessageLoopStart() {} |
| 34 | 34 |
| 35 // MainMessageLoopRun methods. | 35 // MainMessageLoopRun methods. |
| 36 virtual void PreCreateThreads() {} | 36 virtual void PreCreateThreadsBegin() {} |
| 37 virtual void PreCreateThreadsEnd() {} |
| 37 virtual void PreProfileInit() {} | 38 virtual void PreProfileInit() {} |
| 38 virtual void PostProfileInit() {} | 39 virtual void PostProfileInit() {} |
| 39 virtual void PreBrowserStart() {} | 40 virtual void PreBrowserStart() {} |
| 40 virtual void PostBrowserStart() {} | 41 virtual void PostBrowserStart() {} |
| 41 virtual void PreMainMessageLoopRun() {} | 42 virtual void PreMainMessageLoopRun() {} |
| 42 virtual void PostMainMessageLoopRun() {} | 43 virtual void PostMainMessageLoopRun() {} |
| 43 }; | 44 }; |
| 44 | 45 |
| 45 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ | 46 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ |
| OLD | NEW |