summaryrefslogtreecommitdiffstats
path: root/content/plugin
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-15 03:38:29 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-15 03:38:29 +0000
commite9a82042b509c4f65d1ed04321ef5daafc5c2dd6 (patch)
tree9cb15b9066a04bf4f67b509c76acc5a7a080493a /content/plugin
parentd454dcbc855465ec505aa99c44128fc3e2bb386b (diff)
downloadchromium_src-e9a82042b509c4f65d1ed04321ef5daafc5c2dd6.zip
chromium_src-e9a82042b509c4f65d1ed04321ef5daafc5c2dd6.tar.gz
chromium_src-e9a82042b509c4f65d1ed04321ef5daafc5c2dd6.tar.bz2
content: Move kHttpScheme constant into content namespace.
BUG=None TEST=None, no functional change. TBR=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/23658056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/plugin')
-rw-r--r--content/plugin/webplugin_proxy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/plugin/webplugin_proxy.cc b/content/plugin/webplugin_proxy.cc
index 51635ec..7ace0ca 100644
--- a/content/plugin/webplugin_proxy.cc
+++ b/content/plugin/webplugin_proxy.cc
@@ -321,7 +321,7 @@ void WebPluginProxy::HandleURLRequest(const char* url,
if (delegate_->GetQuirks() &
WebPluginDelegateImpl::PLUGIN_QUIRK_BLOCK_NONSTANDARD_GETURL_REQUESTS) {
GURL request_url(url);
- if (!request_url.SchemeIs(chrome::kHttpScheme) &&
+ if (!request_url.SchemeIs(kHttpScheme) &&
!request_url.SchemeIs(kHttpsScheme) &&
!request_url.SchemeIs(chrome::kFtpScheme)) {
return;