Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: chrome/browser/chrome_browser_parts.cc

Issue 8539038: Add ChromeBrowserMainExtraParts for non main parts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Simplify CL. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_parts.h"
6
7 ChromeBrowserParts::ChromeBrowserParts() {
8 }
9
10 ChromeBrowserParts::~ChromeBrowserParts() {
11 }
12
13 void ChromeBrowserParts::PreEarlyInitialization() {
14 }
15
16 void ChromeBrowserParts::PostEarlyInitialization() {
17 }
18
19 void ChromeBrowserParts::PreMainMessageLoopStart() {
20 }
21
22 void ChromeBrowserParts::PostMainMessageLoopStart() {
23 }
24
25 void ChromeBrowserParts::ToolkitInitialized() {
26 }
27
28 void ChromeBrowserParts::PostBrowserProcessInit() {
29 }
30
31 void ChromeBrowserParts::PostProfileInitialized() {
32 }
33
34 void ChromeBrowserParts::PreMainMessageLoopRun() {
35 }
36
37 void ChromeBrowserParts::PostMainMessageLoopRun() {
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698