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

Unified Diff: third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp

Issue 2809123002: ur_ls -> urls in platform/weborigin (Closed)
Patch Set: Created 3 years, 8 months 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 | « no previous file | third_party/WebKit/Source/platform/weborigin/SecurityPolicyTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
diff --git a/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp b/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
index 2e2cf72bea44ec0ad1e3cc155af14dbbc7717cf4..81f96ac2ef95a80d291a654fad1f0a6737dbf7a1 100644
--- a/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
+++ b/third_party/WebKit/Source/platform/weborigin/SchemeRegistry.cpp
@@ -68,7 +68,7 @@ class URLSchemesRegistry final {
URLSchemesSet schemes_with_unique_origins;
URLSchemesSet empty_document_schemes;
URLSchemesSet schemes_forbidden_from_domain_relaxation;
- URLSchemesSet not_allowing_javascript_ur_ls_schemes;
+ URLSchemesSet not_allowing_javascript_urls_schemes;
URLSchemesSet cors_enabled_schemes;
URLSchemesSet service_worker_schemes;
URLSchemesSet fetch_api_schemes;
@@ -202,7 +202,7 @@ bool SchemeRegistry::CanDisplayOnlyIfCanRequest(const String& scheme) {
void SchemeRegistry::RegisterURLSchemeAsNotAllowingJavascriptURLs(
const String& scheme) {
DCHECK_EQ(scheme, scheme.DeprecatedLower());
- GetMutableURLSchemesRegistry().not_allowing_javascript_ur_ls_schemes.insert(
+ GetMutableURLSchemesRegistry().not_allowing_javascript_urls_schemes.insert(
scheme);
}
@@ -211,7 +211,7 @@ bool SchemeRegistry::ShouldTreatURLSchemeAsNotAllowingJavascriptURLs(
DCHECK_EQ(scheme, scheme.DeprecatedLower());
if (scheme.IsEmpty())
return false;
- return GetURLSchemesRegistry().not_allowing_javascript_ur_ls_schemes.Contains(
+ return GetURLSchemesRegistry().not_allowing_javascript_urls_schemes.Contains(
scheme);
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/weborigin/SecurityPolicyTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698