diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-26 03:36:58 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-26 03:36:58 +0000 |
commit | 4654bfe33256021b07fa4b9518e28e3e937ae39d (patch) | |
tree | 4370202ffad7545e22ea75934a85ec9a5a5e7a18 /content/browser/child_process_security_policy_impl.cc | |
parent | d474bf8ae4d09569fccefd06d35e0e4e98745e43 (diff) | |
download | chromium_src-4654bfe33256021b07fa4b9518e28e3e937ae39d.zip chromium_src-4654bfe33256021b07fa4b9518e28e3e937ae39d.tar.gz chromium_src-4654bfe33256021b07fa4b9518e28e3e937ae39d.tar.bz2 |
content: Move kHttpsScheme constant into content namespace.
BUG=None
TBR=jam@chromium.org
Review URL: https://chromiumcodereview.appspot.com/23112033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/child_process_security_policy_impl.cc')
-rw-r--r-- | content/browser/child_process_security_policy_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/child_process_security_policy_impl.cc b/content/browser/child_process_security_policy_impl.cc index b47cbd2..c3533ad 100644 --- a/content/browser/child_process_security_policy_impl.cc +++ b/content/browser/child_process_security_policy_impl.cc @@ -280,7 +280,7 @@ class ChildProcessSecurityPolicyImpl::SecurityState { ChildProcessSecurityPolicyImpl::ChildProcessSecurityPolicyImpl() { // We know about these schemes and believe them to be safe. RegisterWebSafeScheme(chrome::kHttpScheme); - RegisterWebSafeScheme(chrome::kHttpsScheme); + RegisterWebSafeScheme(kHttpsScheme); RegisterWebSafeScheme(chrome::kFtpScheme); RegisterWebSafeScheme(chrome::kDataScheme); RegisterWebSafeScheme("feed"); |