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

Unified Diff: chrome/browser/chrome_browser_main_win.h

Issue 10211008: Moves media device notification code to chrome/browser (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698