OLD | NEW |
---|---|
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 #pragma once | 9 #pragma once |
10 | 10 |
11 #include "chrome/browser/chrome_browser_main.h" | 11 #include "chrome/browser/chrome_browser_main.h" |
vandebo (ex-Chrome)
2012/04/24 21:58:17
#include "base/memory/scoped_ptr.h"
tpayne
2012/04/24 22:59:17
Done.
| |
12 | 12 |
13 class CommandLine; | 13 class CommandLine; |
14 | 14 |
15 namespace chrome { | |
16 class MediaDeviceNotificationWindowWin; | |
17 } // namespace chrome | |
18 | |
19 | |
15 // Handle uninstallation when given the appropriate the command-line switch. | 20 // Handle uninstallation when given the appropriate the command-line switch. |
16 // If |chrome_still_running| is true a modal dialog will be shown asking the | 21 // If |chrome_still_running| is true a modal dialog will be shown asking the |
17 // user to close the other chrome instance. | 22 // user to close the other chrome instance. |
18 int DoUninstallTasks(bool chrome_still_running); | 23 int DoUninstallTasks(bool chrome_still_running); |
19 | 24 |
20 class ChromeBrowserMainPartsWin : public ChromeBrowserMainParts { | 25 class ChromeBrowserMainPartsWin : public ChromeBrowserMainParts { |
21 public: | 26 public: |
22 explicit ChromeBrowserMainPartsWin( | 27 explicit ChromeBrowserMainPartsWin( |
23 const content::MainFunctionParams& parameters); | 28 const content::MainFunctionParams& parameters); |
24 | 29 |
30 virtual ChromeBrowserMainPartsWin::~ChromeBrowserMainPartsWin(); | |
31 | |
25 // BrowserParts overrides. | 32 // BrowserParts overrides. |
26 virtual void ToolkitInitialized() OVERRIDE; | 33 virtual void ToolkitInitialized() OVERRIDE; |
27 virtual void PreMainMessageLoopStart() OVERRIDE; | 34 virtual void PreMainMessageLoopStart() OVERRIDE; |
28 | 35 |
29 // ChromeBrowserMainParts overrides. | 36 // ChromeBrowserMainParts overrides. |
30 virtual void ShowMissingLocaleMessageBox() OVERRIDE; | 37 virtual void ShowMissingLocaleMessageBox() OVERRIDE; |
31 | 38 |
32 // Prepares the localized strings that are going to be displayed to | 39 // Prepares the localized strings that are going to be displayed to |
33 // the user if the browser process dies. These strings are stored in the | 40 // the user if the browser process dies. These strings are stored in the |
34 // environment block so they are accessible in the early stages of the | 41 // environment block so they are accessible in the early stages of the |
(...skipping 12 matching lines...) Expand all Loading... | |
47 // functionality so we just ask the users if they want to uninstall Chrome. | 54 // functionality so we just ask the users if they want to uninstall Chrome. |
48 static int HandleIconsCommands(const CommandLine& parsed_command_line); | 55 static int HandleIconsCommands(const CommandLine& parsed_command_line); |
49 | 56 |
50 // Check if there is any machine level Chrome installed on the current | 57 // Check if there is any machine level Chrome installed on the current |
51 // machine. If yes and the current Chrome process is user level, we do not | 58 // machine. If yes and the current Chrome process is user level, we do not |
52 // allow the user level Chrome to run. So we notify the user and uninstall | 59 // allow the user level Chrome to run. So we notify the user and uninstall |
53 // user level Chrome. | 60 // user level Chrome. |
54 static bool CheckMachineLevelInstall(); | 61 static bool CheckMachineLevelInstall(); |
55 | 62 |
56 private: | 63 private: |
64 scoped_ptr<chrome::MediaDeviceNotificationWindowWin> | |
65 media_device_notification_window_; | |
57 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin); | 66 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin); |
58 }; | 67 }; |
59 | 68 |
60 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ | 69 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ |
OLD | NEW |