| Index: third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
|
| index 7c178f92e957a916aaaa2bc39b0934728b41cad6..303fdae15c1e337cfee93048a3f23af722b0c0f2 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
|
| @@ -222,7 +222,7 @@ public:
|
|
|
| // Inform main thread to re-queue the data.
|
| m_loadingTaskRunner->postTask(
|
| - FROM_HERE, bind(&SourceStream::fetchDataFromResourceBuffer, this, 0));
|
| + BLINK_FROM_HERE, bind(&SourceStream::fetchDataFromResourceBuffer, this, 0));
|
| }
|
|
|
| void didFinishLoading()
|
| @@ -425,7 +425,7 @@ void ScriptStreamer::streamingCompleteOnBackgroundThread()
|
|
|
| // notifyFinished might already be called, or it might be called in the
|
| // future (if the parsing finishes earlier because of a parse error).
|
| - m_loadingTaskRunner->postTask(FROM_HERE, threadSafeBind(&ScriptStreamer::streamingComplete, AllowCrossThreadAccess(this)));
|
| + m_loadingTaskRunner->postTask(BLINK_FROM_HERE, threadSafeBind(&ScriptStreamer::streamingComplete, AllowCrossThreadAccess(this)));
|
|
|
| // The task might delete ScriptStreamer, so it's not safe to do anything
|
| // after posting it. Note that there's no way to guarantee that this
|
|
|