Index: content/common/media/media_stream_options.h |
diff --git a/content/common/media/media_stream_options.h b/content/common/media/media_stream_options.h |
index 286882934dae23793aab6d444f6329164f781391..18f0379268498b56afe6a59f79cabfcdd959e33b 100644 |
--- a/content/common/media/media_stream_options.h |
+++ b/content/common/media/media_stream_options.h |
@@ -8,7 +8,6 @@ |
#include <string> |
#include <vector> |
-#include "base/callback.h" |
#include "content/common/content_export.h" |
#include "content/public/common/media_stream_request.h" |
@@ -20,11 +19,6 @@ CONTENT_EXPORT extern const char kMediaStreamSourceId[]; |
CONTENT_EXPORT extern const char kMediaStreamSourceTab[]; |
CONTENT_EXPORT extern const char kMediaStreamSourceScreen[]; |
-// 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 MediaStreamDevices&) > |
- MediaRequestResponseCallback; |
- |
// StreamOptions is a Chromium representation of WebKit's |
// WebUserMediaRequest Options. It describes the components |
// in a request for a new media stream. |