Index: chrome/browser/chrome_browser_main_win.h |
diff --git a/chrome/browser/chrome_browser_main_win.h b/chrome/browser/chrome_browser_main_win.h |
index 3ba4a90ce23f287381b6cba0ded4a6365743f20f..2feb9fde34fb3bb91a7139811c27f414683cf262 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); |
}; |