| 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 #include "chrome/browser/chrome_browser_main_extra_parts.h" | 5 #include "chrome/browser/chrome_browser_main_extra_parts.h" |
| 6 | 6 |
| 7 ChromeBrowserMainExtraParts::ChromeBrowserMainExtraParts() { | 7 ChromeBrowserMainExtraParts::ChromeBrowserMainExtraParts() { |
| 8 } | 8 } |
| 9 | 9 |
| 10 ChromeBrowserMainExtraParts::~ChromeBrowserMainExtraParts() { | 10 ChromeBrowserMainExtraParts::~ChromeBrowserMainExtraParts() { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 void ChromeBrowserMainExtraParts::ToolkitInitialized() { | 25 void ChromeBrowserMainExtraParts::ToolkitInitialized() { |
| 26 } | 26 } |
| 27 | 27 |
| 28 void ChromeBrowserMainExtraParts::PostBrowserProcessInit() { | 28 void ChromeBrowserMainExtraParts::PostBrowserProcessInit() { |
| 29 } | 29 } |
| 30 | 30 |
| 31 void ChromeBrowserMainExtraParts::PostProfileInitialized() { | 31 void ChromeBrowserMainExtraParts::PostProfileInitialized() { |
| 32 } | 32 } |
| 33 | 33 |
| 34 void ChromeBrowserMainExtraParts::PreBrowserStart() { |
| 35 } |
| 36 |
| 37 void ChromeBrowserMainExtraParts::PostBrowserStart() { |
| 38 } |
| 39 |
| 34 void ChromeBrowserMainExtraParts::PreMainMessageLoopRun() { | 40 void ChromeBrowserMainExtraParts::PreMainMessageLoopRun() { |
| 35 } | 41 } |
| 36 | 42 |
| 37 void ChromeBrowserMainExtraParts::PostMainMessageLoopRun() { | 43 void ChromeBrowserMainExtraParts::PostMainMessageLoopRun() { |
| 38 } | 44 } |
| OLD | NEW |