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

Unified Diff: webkit/media/simple_data_source.cc

Issue 8616008: Remove IsProtocolSupportedForMedia (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compile Created 9 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
« no previous file with comments | « webkit/media/buffered_resource_loader.cc ('k') | webkit/support/webkit_support_glue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/simple_data_source.cc
diff --git a/webkit/media/simple_data_source.cc b/webkit/media/simple_data_source.cc
index 18b464a695f3e8b71f3f55f3f32fe3f942f6c289..16d0a9f6c8d011cfd80d53cdb67b65b33633a5cf 100644
--- a/webkit/media/simple_data_source.cc
+++ b/webkit/media/simple_data_source.cc
@@ -17,7 +17,6 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebKitPlatformSupport.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebURLLoaderOptions.h"
-#include "webkit/glue/webkit_glue.h"
#include "webkit/media/web_data_source_factory.h"
using WebKit::WebString;
@@ -96,7 +95,7 @@ void SimpleDataSource::Initialize(
// Validate the URL.
url_ = GURL(url);
- if (!url_.is_valid() || !webkit_glue::IsProtocolSupportedForMedia(url_)) {
+ if (!url_.is_valid()) {
DoneInitialization_Locked(false);
return;
}
« no previous file with comments | « webkit/media/buffered_resource_loader.cc ('k') | webkit/support/webkit_support_glue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698