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

Unified Diff: content/public/browser/media_observer.h

Issue 183743021: Implement MediaCaptureDevices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try again Created 6 years, 9 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
« no previous file with comments | « content/public/browser/media_devices_monitor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/media_observer.h
diff --git a/content/public/browser/media_observer.h b/content/public/browser/media_observer.h
index 20d47a526ec204ad059a413db0713f99764fcf63..dca5b85564fe9c6c58498e59213fd8fbef14fc85 100644
--- a/content/public/browser/media_observer.h
+++ b/content/public/browser/media_observer.h
@@ -16,12 +16,10 @@ namespace content {
class MediaObserver {
public:
// Called when a audio capture device is plugged in or unplugged.
- virtual void OnAudioCaptureDevicesChanged(
- const MediaStreamDevices& devices) = 0;
+ virtual void OnAudioCaptureDevicesChanged() = 0;
// Called when a video capture device is plugged in or unplugged.
- virtual void OnVideoCaptureDevicesChanged(
- const MediaStreamDevices& devices) = 0;
+ virtual void OnVideoCaptureDevicesChanged() = 0;
// Called when a media request changes state.
virtual void OnMediaRequestStateChanged(
« no previous file with comments | « content/public/browser/media_devices_monitor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698