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

Unified Diff: content/browser/renderer_host/media/media_stream_requester.h

Issue 2487133003: Remove dead code related to media device enumerations and monitoring. (Closed)
Patch Set: rebase Created 4 years, 1 month 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: content/browser/renderer_host/media/media_stream_requester.h
diff --git a/content/browser/renderer_host/media/media_stream_requester.h b/content/browser/renderer_host/media/media_stream_requester.h
index fc475dde09be7739c271af280d83f303478457b4..0a3c85d6d1b295e5fadc8f52b4f55bc1491558da 100644
--- a/content/browser/renderer_host/media/media_stream_requester.h
+++ b/content/browser/renderer_host/media/media_stream_requester.h
@@ -34,19 +34,11 @@ class CONTENT_EXPORT MediaStreamRequester {
virtual void DeviceStopped(int render_frame_id,
const std::string& label,
const StreamDeviceInfo& device) = 0;
- // Called as a reply of a successful call to EnumerateDevices.
- virtual void DevicesEnumerated(int render_frame_id,
- int page_request_id,
- const std::string& label,
- const StreamDeviceInfoArray& devices) = 0;
// Called as a reply of a successful call to OpenDevice.
virtual void DeviceOpened(int render_frame_id,
int page_request_id,
const std::string& label,
const StreamDeviceInfo& device_info) = 0;
- // Called when the set of media devices has changed, provided the
- // MediaStreamRequester is subscribed and authorized to receive such messages.
- virtual void DevicesChanged(MediaStreamType type) = 0;
protected:
virtual ~MediaStreamRequester() {

Powered by Google App Engine
This is Rietveld 408576698