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

Unified Diff: webkit/support/webkit_support_glue.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/simple_data_source.cc ('k') | webkit/tools/test_shell/test_shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/webkit_support_glue.cc
diff --git a/webkit/support/webkit_support_glue.cc b/webkit/support/webkit_support_glue.cc
index 9ca9a882557edfc458d5f5bdf5455eb44c8897c6..a1e64fdf797d124c0210c82a46d5156690c66c24 100644
--- a/webkit/support/webkit_support_glue.cc
+++ b/webkit/support/webkit_support_glue.cc
@@ -6,7 +6,6 @@
#include "base/base_paths.h"
#include "base/path_service.h"
-#include "googleurl/src/gurl.h"
#include "webkit/glue/user_agent.h"
#include "webkit/plugins/npapi/plugin_list.h"
@@ -39,15 +38,6 @@ void GetPlugins(bool refresh,
void AppendToLog(const char*, int, const char*) {
}
-bool IsProtocolSupportedForMedia(const GURL& url) {
- if (url.SchemeIsFile() ||
- url.SchemeIs("http") ||
- url.SchemeIs("https") ||
- url.SchemeIs("data"))
- return true;
- return false;
-}
-
bool GetPluginFinderURL(std::string* plugin_finder_url) {
return false;
}
« no previous file with comments | « webkit/media/simple_data_source.cc ('k') | webkit/tools/test_shell/test_shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698