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

Unified Diff: chrome/browser/ui/webui/options/media_devices_selection_handler.h

Issue 183743021: Implement MediaCaptureDevices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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/ui/webui/options/media_devices_selection_handler.h
diff --git a/chrome/browser/ui/webui/options/media_devices_selection_handler.h b/chrome/browser/ui/webui/options/media_devices_selection_handler.h
index e060872f572ab3cad96009160391732303b830d1..8fb34e56894d55844070b6670c460193b3eb25fa 100644
--- a/chrome/browser/ui/webui/options/media_devices_selection_handler.h
+++ b/chrome/browser/ui/webui/options/media_devices_selection_handler.h
@@ -5,8 +5,8 @@
#ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_MEDIA_DEVICES_SELECTION_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_OPTIONS_MEDIA_DEVICES_SELECTION_HANDLER_H_
-#include "chrome/browser/media/media_capture_devices_dispatcher.h"
#include "chrome/browser/ui/webui/options/options_ui.h"
+#include "content/public/browser/media_capture_devices.h"
#include "content/public/browser/web_contents.h"
#include "grit/generated_resources.h"
@@ -14,7 +14,7 @@ namespace options {
// Handler for media devices selection in content settings.
class MediaDevicesSelectionHandler
- : public MediaCaptureDevicesDispatcher::Observer,
+ : public content::MediaCaptureDevices::Observer,
public OptionsPageUIHandler {
public:
MediaDevicesSelectionHandler();
@@ -25,7 +25,7 @@ class MediaDevicesSelectionHandler
virtual void InitializePage() OVERRIDE;
virtual void RegisterMessages() OVERRIDE;
- // MediaCaptureDevicesDispatcher::Observer implementation.
+ // MediaCaptureDevices::Observer implementation.
virtual void OnUpdateAudioDevices(
const content::MediaStreamDevices& devices) OVERRIDE;
virtual void OnUpdateVideoDevices(

Powered by Google App Engine
This is Rietveld 408576698