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

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

Issue 180633008: Add different error codes for getUserMedia. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed comments 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
Index: content/browser/renderer_host/media/media_stream_dispatcher_host.h
diff --git a/content/browser/renderer_host/media/media_stream_dispatcher_host.h b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
index 556a6c187c047b78373be6245631f48ed659ce85..78d662297050064c507a85a080042ddbbe57c1f6 100644
--- a/content/browser/renderer_host/media/media_stream_dispatcher_host.h
+++ b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
@@ -38,8 +38,10 @@ class CONTENT_EXPORT MediaStreamDispatcherHost : public BrowserMessageFilter,
const std::string& label,
const StreamDeviceInfoArray& audio_devices,
const StreamDeviceInfoArray& video_devices) OVERRIDE;
- virtual void StreamGenerationFailed(int render_view_id,
- int page_request_id) OVERRIDE;
+ virtual void StreamGenerationFailed(
+ int render_view_id,
+ int page_request_id,
+ content::MediaStreamRequestResult result) OVERRIDE;
virtual void DeviceStopped(int render_view_id,
const std::string& label,
const StreamDeviceInfo& device) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698