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

Unified Diff: third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp

Issue 2810073002: Blink Rename follow-up: URLs --big-rename--> _ur_ls --this-fix--> _urls. (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
Index: third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
diff --git a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
index cd01183f9d03c1a3ee3e03dbfc695c223769cf56..1152fb111077f90881423198514b900691a8b411 100644
--- a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
+++ b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
@@ -225,9 +225,9 @@ bool CanvasRenderingContext::WouldTaintOrigin(
if (has_url) {
if (source_url.ProtocolIsData() ||
- clean_ur_ls_.Contains(source_url.GetString()))
+ clean_urls_.Contains(source_url.GetString()))
return false;
- if (dirty_ur_ls_.Contains(source_url.GetString()))
+ if (dirty_urls_.Contains(source_url.GetString()))
return true;
}
@@ -239,9 +239,9 @@ bool CanvasRenderingContext::WouldTaintOrigin(
if (has_url) {
if (taint_origin)
- dirty_ur_ls_.insert(source_url.GetString());
+ dirty_urls_.insert(source_url.GetString());
else
- clean_ur_ls_.insert(source_url.GetString());
+ clean_urls_.insert(source_url.GetString());
}
return taint_origin;
}

Powered by Google App Engine
This is Rietveld 408576698