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

Unified Diff: content/renderer/media/media_stream_dispatcher_eventhandler.h

Issue 11339014: Move content\browser\renderer_host\media to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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/renderer/media/media_stream_dispatcher_eventhandler.h
===================================================================
--- content/renderer/media/media_stream_dispatcher_eventhandler.h (revision 164646)
+++ content/renderer/media/media_stream_dispatcher_eventhandler.h (working copy)
@@ -18,8 +18,8 @@
virtual void OnStreamGenerated(
int request_id,
const std::string& label,
- const media_stream::StreamDeviceInfoArray& audio_device_array,
- const media_stream::StreamDeviceInfoArray& video_device_array) = 0;
+ const StreamDeviceInfoArray& audio_device_array,
+ const StreamDeviceInfoArray& video_device_array) = 0;
// Creation of a new media stream failed. The user might have denied access
// to the requested devices or no device is available.
@@ -28,7 +28,7 @@
// A new list of devices have been enumerated.
virtual void OnDevicesEnumerated(
int request_id,
- const media_stream::StreamDeviceInfoArray& device_array) = 0;
+ const StreamDeviceInfoArray& device_array) = 0;
// Failed to enumerate devices.
virtual void OnDevicesEnumerationFailed(int request_id) = 0;
@@ -37,7 +37,7 @@
virtual void OnDeviceOpened(
int request_id,
const std::string& label,
- const media_stream::StreamDeviceInfo& device_info) = 0;
+ const StreamDeviceInfo& device_info) = 0;
// Failed to open the device.
virtual void OnDeviceOpenFailed(int request_id) = 0;

Powered by Google App Engine
This is Rietveld 408576698