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

Unified Diff: content/common/media/media_stream_options.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/common/media/media_stream_options.h
===================================================================
--- content/common/media/media_stream_options.h (revision 164646)
+++ content/common/media/media_stream_options.h (working copy)
@@ -12,19 +12,18 @@
#include "content/common/content_export.h"
#include "content/public/common/media_stream_request.h"
-namespace media_stream {
+namespace content {
// MediaStreamConstraint keys for constraints that are passed to getUserMedia.
CONTENT_EXPORT extern const char kMediaStreamSource[];
CONTENT_EXPORT extern const char kMediaStreamSourceId[];
CONTENT_EXPORT extern const char kMediaStreamSourceTab[];
-typedef content::MediaStreamDeviceType MediaStreamType;
+typedef MediaStreamDeviceType MediaStreamType;
// Callback to deliver the result of a media request. |label| is the string
// to identify the request,
-typedef base::Callback< void(const std::string&,
- const content::MediaStreamDevices&) >
+typedef base::Callback< void(const std::string&, const MediaStreamDevices&) >
MediaRequestResponseCallback;
// StreamOptions is a Chromium representation of WebKit's
@@ -70,6 +69,6 @@
typedef std::vector<StreamDeviceInfo> StreamDeviceInfoArray;
-} // namespace media_stream
+} // namespace content
#endif // CONTENT_COMMON_MEDIA_MEDIA_STREAM_OPTIONS_H_

Powered by Google App Engine
This is Rietveld 408576698