Index: third_party/WebKit/Source/modules/fetch/DataConsumerTee.cpp |
diff --git a/third_party/WebKit/Source/modules/fetch/DataConsumerTee.cpp b/third_party/WebKit/Source/modules/fetch/DataConsumerTee.cpp |
index 34a5d0f3d6ab03b3f96c9b8baee67b21c36f9289..7a93211ac134deabfc6380c220b4992d26947334 100644 |
--- a/third_party/WebKit/Source/modules/fetch/DataConsumerTee.cpp |
+++ b/third_party/WebKit/Source/modules/fetch/DataConsumerTee.cpp |
@@ -184,7 +184,7 @@ public: |
} |
ASSERT(m_readerThread); |
if (!m_readerThread->isCurrentThread()) { |
- m_readerThread->taskRunner()->postTask(FROM_HERE, new Task(threadSafeBind(&DestinationContext::notify, this))); |
+ m_readerThread->taskRunner()->postTask(BLINK_FROM_HERE, new Task(threadSafeBind(&DestinationContext::notify, this))); |
return; |
} |
} |
@@ -271,7 +271,7 @@ public: |
// We need to use threadSafeBind here to retain the context. Note |
// |context()| return value is of type DestinationContext*, not |
// PassRefPtr<DestinationContext>. |
- Platform::current()->currentThread()->taskRunner()->postTask(FROM_HERE, new Task(threadSafeBind(&DestinationContext::notify, context()))); |
+ Platform::current()->currentThread()->taskRunner()->postTask(BLINK_FROM_HERE, new Task(threadSafeBind(&DestinationContext::notify, context()))); |
} |
} |
~DestinationReader() override |