blob: 14362a34fefce9b831c7f2ac8d6f8d8af93ddd76 [file] [log] [blame]
[email protected]50462bf02011-11-21 19:13:311// 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
7ChromeBrowserMainExtraParts::ChromeBrowserMainExtraParts() {
8}
9
10ChromeBrowserMainExtraParts::~ChromeBrowserMainExtraParts() {
11}
12
13void ChromeBrowserMainExtraParts::PreEarlyInitialization() {
14}
15
16void ChromeBrowserMainExtraParts::PostEarlyInitialization() {
17}
18
19void ChromeBrowserMainExtraParts::PreMainMessageLoopStart() {
20}
21
22void ChromeBrowserMainExtraParts::PostMainMessageLoopStart() {
23}
24
25void ChromeBrowserMainExtraParts::ToolkitInitialized() {
26}
27
[email protected]97ef83f2011-12-19 19:26:3628void ChromeBrowserMainExtraParts::PreProfileInit() {
[email protected]50462bf02011-11-21 19:13:3129}
30
[email protected]97ef83f2011-12-19 19:26:3631void ChromeBrowserMainExtraParts::PostProfileInit() {
32}
33
34void ChromeBrowserMainExtraParts::PreBrowserStart() {
35}
36
37void ChromeBrowserMainExtraParts::PostBrowserStart() {
[email protected]50462bf02011-11-21 19:13:3138}
39
40void ChromeBrowserMainExtraParts::PreMainMessageLoopRun() {
41}
42
43void ChromeBrowserMainExtraParts::PostMainMessageLoopRun() {
44}