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..428fd61ea70028270a4cb6f45e35506f597d12bb 100644 |
--- a/chrome/browser/chrome_browser_main_win.h |
+++ b/chrome/browser/chrome_browser_main_win.h |
@@ -12,6 +12,11 @@ |
class CommandLine; |
+namespace chrome { |
+class MediaDeviceNotificationWindowWin; |
+} // 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 +27,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 +61,8 @@ class ChromeBrowserMainPartsWin : public ChromeBrowserMainParts { |
static bool CheckMachineLevelInstall(); |
private: |
+ scoped_ptr<chrome::MediaDeviceNotificationWindowWin> |
+ media_device_notification_window_; |
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin); |
}; |