OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/chrome_browser_main_extra_parts.h" |
| 6 |
| 7 ChromeBrowserMainExtraParts::ChromeBrowserMainExtraParts() { |
| 8 } |
| 9 |
| 10 ChromeBrowserMainExtraParts::~ChromeBrowserMainExtraParts() { |
| 11 } |
| 12 |
| 13 void ChromeBrowserMainExtraParts::PreEarlyInitialization() { |
| 14 } |
| 15 |
| 16 void ChromeBrowserMainExtraParts::PostEarlyInitialization() { |
| 17 } |
| 18 |
| 19 void ChromeBrowserMainExtraParts::PreMainMessageLoopStart() { |
| 20 } |
| 21 |
| 22 void ChromeBrowserMainExtraParts::PostMainMessageLoopStart() { |
| 23 } |
| 24 |
| 25 void ChromeBrowserMainExtraParts::ToolkitInitialized() { |
| 26 } |
| 27 |
| 28 void ChromeBrowserMainExtraParts::PostBrowserProcessInit() { |
| 29 } |
| 30 |
| 31 void ChromeBrowserMainExtraParts::PostProfileInitialized() { |
| 32 } |
| 33 |
| 34 void ChromeBrowserMainExtraParts::PreMainMessageLoopRun() { |
| 35 } |
| 36 |
| 37 void ChromeBrowserMainExtraParts::PostMainMessageLoopRun() { |
| 38 } |
OLD | NEW |