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

Unified Diff: chrome/browser/chrome_browser_main_extra_parts.h

Issue 11413121: Move Windows-specific first run task out of chrome_browser_main.cc by introducing first_run::DoFirs… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comment + TODO(thakis) Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/browser/chrome_browser_main_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_main_extra_parts.h
diff --git a/chrome/browser/chrome_browser_main_extra_parts.h b/chrome/browser/chrome_browser_main_extra_parts.h
index 07673ab943407580de6d519228c5ea7cdefa3583..0904ed649ea741d559429be314150d1914a5d765 100644
--- a/chrome/browser/chrome_browser_main_extra_parts.h
+++ b/chrome/browser/chrome_browser_main_extra_parts.h
@@ -15,6 +15,11 @@
// separate to allow stages to be further subdivided for Chrome specific
// initialization stages (e.g. browser process init, profile init).
+// While ChromeBrowserMainParts are platform-specific,
+// ChromeBrowserMainExtraParts are used to do further initialization for various
+// Chrome toolkits (e.g., GTK, VIEWS, ASH, AURA, etc.; see
+// ChromeContentBrowserClient::CreateBrowserMainParts()).
+
class ChromeBrowserMainExtraParts {
public:
virtual ~ChromeBrowserMainExtraParts() {}
@@ -33,6 +38,8 @@ class ChromeBrowserMainExtraParts {
// MainMessageLoopRun methods.
virtual void PreProfileInit() {}
virtual void PostProfileInit() {}
+ virtual void PreInteractiveFirstRunInit() {}
+ virtual void PostInteractiveFirstRunInit() {}
virtual void PreBrowserStart() {}
virtual void PostBrowserStart() {}
virtual void PreMainMessageLoopRun() {}
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/browser/chrome_browser_main_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698