Index: chrome/browser/chrome_browser_main.h |
diff --git a/chrome/browser/chrome_browser_main.h b/chrome/browser/chrome_browser_main.h |
index 806af879149893c696445ecb0d2a27e8762ab735..f2f0066f8440c20148341835bf2f6a694f3271cf 100644 |
--- a/chrome/browser/chrome_browser_main.h |
+++ b/chrome/browser/chrome_browser_main.h |
@@ -62,6 +62,12 @@ class ChromeBrowserMainParts : public content::BrowserMainParts { |
virtual bool MainMessageLoopRun(int* result_code) OVERRIDE; |
virtual void PostMainMessageLoopRun() OVERRIDE; |
+ // Additional stages for ChromeBrowserMainExtraParts. |
+ virtual void PostBrowserProcessInit(); |
+ virtual void PostProfileInitialized(); |
+ virtual void PreBrowserStart(); |
+ virtual void PostBrowserStart(); |
satorux1
2011/11/23 23:51:53
BTW, will these stages be executed in this order?
stevenjb
2011/11/24 01:35:39
Yes. I will add comments to clarify this.
|
+ |
// Displays a warning message that we can't find any locale data files. |
virtual void ShowMissingLocaleMessageBox() = 0; |