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

Side by Side Diff: chrome/browser/chrome_browser_main_win.h

Issue 11636031: [Fixit Dec-2012] Refactor first_run, very few things should depend on whether the First Run senti... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: No first run import test on OS_CHROMEOS. Created 7 years, 11 months 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Contains functions used by BrowserMain() that are win32-specific. 5 // Contains functions used by BrowserMain() that are win32-specific.
6 6
7 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ 7 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_
8 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ 8 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 18 matching lines...) Expand all
29 29
30 virtual ~ChromeBrowserMainPartsWin(); 30 virtual ~ChromeBrowserMainPartsWin();
31 31
32 // BrowserParts overrides. 32 // BrowserParts overrides.
33 virtual void ToolkitInitialized() OVERRIDE; 33 virtual void ToolkitInitialized() OVERRIDE;
34 virtual void PreMainMessageLoopStart() OVERRIDE; 34 virtual void PreMainMessageLoopStart() OVERRIDE;
35 virtual void PostMainMessageLoopStart() OVERRIDE; 35 virtual void PostMainMessageLoopStart() OVERRIDE;
36 virtual void PreMainMessageLoopRun() OVERRIDE; 36 virtual void PreMainMessageLoopRun() OVERRIDE;
37 37
38 // ChromeBrowserMainParts overrides. 38 // ChromeBrowserMainParts overrides.
39 virtual void PreInteractiveFirstRunInit() OVERRIDE;
40 virtual void ShowMissingLocaleMessageBox() OVERRIDE; 39 virtual void ShowMissingLocaleMessageBox() OVERRIDE;
41 40
42 // Prepares the localized strings that are going to be displayed to 41 // Prepares the localized strings that are going to be displayed to
43 // the user if the browser process dies. These strings are stored in the 42 // the user if the browser process dies. These strings are stored in the
44 // environment block so they are accessible in the early stages of the 43 // environment block so they are accessible in the early stages of the
45 // chrome executable's lifetime. 44 // chrome executable's lifetime.
46 static void PrepareRestartOnCrashEnviroment( 45 static void PrepareRestartOnCrashEnviroment(
47 const CommandLine& parsed_command_line); 46 const CommandLine& parsed_command_line);
48 47
49 // Registers Chrome with the Windows Restart Manager, which will restore the 48 // Registers Chrome with the Windows Restart Manager, which will restore the
(...skipping 17 matching lines...) Expand all
67 // installer_util. 66 // installer_util.
68 static void SetupInstallerUtilStrings(); 67 static void SetupInstallerUtilStrings();
69 68
70 private: 69 private:
71 scoped_ptr<chrome::RemovableDeviceNotificationsWindowWin> 70 scoped_ptr<chrome::RemovableDeviceNotificationsWindowWin>
72 removable_device_notifications_window_; 71 removable_device_notifications_window_;
73 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin); 72 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin);
74 }; 73 };
75 74
76 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ 75 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main_extra_parts.h ('k') | chrome/browser/chrome_browser_main_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698