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

Unified Diff: Source/bindings/core/v8/V8PerIsolateData.cpp

Issue 724953002: Use Blink-style method casing for EndOfScopeTask::run() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 | « Source/bindings/core/v8/V8PerIsolateData.h ('k') | Source/modules/indexeddb/IDBTransaction.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8PerIsolateData.cpp
diff --git a/Source/bindings/core/v8/V8PerIsolateData.cpp b/Source/bindings/core/v8/V8PerIsolateData.cpp
index 3f53ada38839378a72396119a5d74eb87c59f43c..4fdc745afbab18033b9f98ac8c0a0d9a56d8da1c 100644
--- a/Source/bindings/core/v8/V8PerIsolateData.cpp
+++ b/Source/bindings/core/v8/V8PerIsolateData.cpp
@@ -259,7 +259,7 @@ void V8PerIsolateData::runEndOfScopeTasks()
Vector<OwnPtr<EndOfScopeTask>> tasks;
tasks.swap(m_endOfScopeTasks);
for (const auto& task : tasks)
- task->Run();
+ task->run();
ASSERT(m_endOfScopeTasks.isEmpty());
}
« no previous file with comments | « Source/bindings/core/v8/V8PerIsolateData.h ('k') | Source/modules/indexeddb/IDBTransaction.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698