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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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/bindings/core/v8/ScriptStreamerThread.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp
index f60a65d834dd1a40602f367a620c3ce53b68e037..1547e9999ca80f897b54074830952e4f572726ba 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp
@@ -68,9 +68,10 @@ void ScriptStreamerThread::taskDone() {
}
WebThread& ScriptStreamerThread::platformThread() {
- if (!isRunning())
- m_thread =
- wrapUnique(Platform::current()->createThread("ScriptStreamerThread"));
+ if (!isRunning()) {
+ m_thread = WTF::wrapUnique(
+ Platform::current()->createThread("ScriptStreamerThread"));
+ }
return *m_thread;
}

Powered by Google App Engine
This is Rietveld 408576698