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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.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/workers/WorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
index d6a3a33bb5d7c43a9442ded08a9c82886187b9f1..64cf6ad07934df47595615b48c02b2a783078027 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
@@ -175,7 +175,7 @@ void WorkerGlobalScope::importScripts(const Vector<String>& urls,
ExecutionContext& execution_context = *this->GetExecutionContext();
- Vector<KURL> completed_ur_ls;
+ Vector<KURL> completed_urls;
for (const String& url_string : urls) {
const KURL& url = execution_context.CompleteURL(url_string);
if (!url.IsValid()) {
@@ -190,10 +190,10 @@ void WorkerGlobalScope::importScripts(const Vector<String>& urls,
"The script at '" + url.ElidedString() + "' failed to load.");
return;
}
- completed_ur_ls.push_back(url);
+ completed_urls.push_back(url);
}
- for (const KURL& complete_url : completed_ur_ls) {
+ for (const KURL& complete_url : completed_urls) {
RefPtr<WorkerScriptLoader> script_loader(WorkerScriptLoader::Create());
script_loader->SetRequestContext(WebURLRequest::kRequestContextScript);
script_loader->LoadSynchronously(

Powered by Google App Engine
This is Rietveld 408576698