| 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 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 virtual void PostEarlyInitialization(); | 25 virtual void PostEarlyInitialization(); |
| 26 | 26 |
| 27 // ToolkitInitialized methods. | 27 // ToolkitInitialized methods. |
| 28 virtual void ToolkitInitialized(); | 28 virtual void ToolkitInitialized(); |
| 29 | 29 |
| 30 // MainMessageLoopStart methods. | 30 // MainMessageLoopStart methods. |
| 31 virtual void PreMainMessageLoopStart(); | 31 virtual void PreMainMessageLoopStart(); |
| 32 virtual void PostMainMessageLoopStart(); | 32 virtual void PostMainMessageLoopStart(); |
| 33 | 33 |
| 34 // MainMessageLoopRun methods. | 34 // MainMessageLoopRun methods. |
| 35 virtual void PreProfileInit(); | 35 virtual void PostBrowserProcessInit(); |
| 36 virtual void PostProfileInit(); | 36 virtual void PostProfileInitialized(); |
| 37 virtual void PreBrowserStart(); | |
| 38 virtual void PostBrowserStart(); | |
| 39 virtual void PreMainMessageLoopRun(); | 37 virtual void PreMainMessageLoopRun(); |
| 40 virtual void PostMainMessageLoopRun(); | 38 virtual void PostMainMessageLoopRun(); |
| 41 | 39 |
| 42 private: | 40 private: |
| 43 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraParts); | 41 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraParts); |
| 44 }; | 42 }; |
| 45 | 43 |
| 46 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ | 44 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ |
| OLD | NEW |