summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_browser_main_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chrome_browser_main_win.h')
-rw-r--r--chrome/browser/chrome_browser_main_win.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/browser/chrome_browser_main_win.h b/chrome/browser/chrome_browser_main_win.h
index 3ba4a90..2feb9fd 100644
--- a/chrome/browser/chrome_browser_main_win.h
+++ b/chrome/browser/chrome_browser_main_win.h
@@ -8,10 +8,16 @@
#define CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_
#pragma once
+#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chrome_browser_main.h"
class CommandLine;
+namespace chrome {
+class MediaDeviceNotificationsWindowWin;
+} // namespace chrome
+
+
// Handle uninstallation when given the appropriate the command-line switch.
// If |chrome_still_running| is true a modal dialog will be shown asking the
// user to close the other chrome instance.
@@ -22,6 +28,8 @@ class ChromeBrowserMainPartsWin : public ChromeBrowserMainParts {
explicit ChromeBrowserMainPartsWin(
const content::MainFunctionParams& parameters);
+ virtual ChromeBrowserMainPartsWin::~ChromeBrowserMainPartsWin();
+
// BrowserParts overrides.
virtual void ToolkitInitialized() OVERRIDE;
virtual void PreMainMessageLoopStart() OVERRIDE;
@@ -54,6 +62,8 @@ class ChromeBrowserMainPartsWin : public ChromeBrowserMainParts {
static bool CheckMachineLevelInstall();
private:
+ scoped_ptr<chrome::MediaDeviceNotificationsWindowWin>
+ media_device_notifications_window_;
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin);
};