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; |
} |