Index: chrome/browser/browser_main_win.h |
=================================================================== |
--- chrome/browser/browser_main_win.h (revision 99756) |
+++ chrome/browser/browser_main_win.h (working copy) |
@@ -8,6 +8,8 @@ |
#define CHROME_BROWSER_BROWSER_MAIN_WIN_H_ |
#pragma once |
+#include "chrome/browser/browser_main.h" |
+ |
class CommandLine; |
// Handle uninstallation when given the appropriate the command-line switch. |
@@ -37,4 +39,13 @@ |
// user level Chrome. |
bool CheckMachineLevelInstall(); |
+class BrowserMainPartsWin : public ChromeBrowserMainParts { |
+ public: |
+ explicit BrowserMainPartsWin(const MainFunctionParams& parameters); |
+ |
+ virtual void PreEarlyInitialization() OVERRIDE; |
+ virtual void PreMainMessageLoopStart() OVERRIDE; |
+ virtual void InitializeSSL() OVERRIDE; |
+}; |
+ |
#endif // CHROME_BROWSER_BROWSER_MAIN_WIN_H_ |