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

Unified Diff: third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.h

Issue 1549143002: Add thread affinity and ASSERT() for same-thread restriction to WTF::Function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@TRV_ThreadSafeBindByVariadicTemplate
Patch Set: Rebase. Created 4 years, 10 months 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/modules/fetch/DataConsumerHandleTestUtil.h
diff --git a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.h b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.h
index b027bbb5d11fcdcb18c1b0b71184a02308d8e991..cbfaafe298065064f57b199e32bdd8ed20b06df1 100644
--- a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.h
+++ b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.h
@@ -115,13 +115,13 @@ public:
ASSERT(m_holder);
m_holder = nullptr;
}
- void postTaskToReadingThread(const WebTraceLocation& location, PassOwnPtr<Closure> task)
+ void postTaskToReadingThread(const WebTraceLocation& location, PassOwnPtr<CrossThreadClosure> task)
{
MutexLocker locker(m_holderMutex);
ASSERT(m_holder);
m_holder->readingThread()->postTask(location, task);
}
- void postTaskToUpdatingThread(const WebTraceLocation& location, PassOwnPtr<Closure> task)
+ void postTaskToUpdatingThread(const WebTraceLocation& location, PassOwnPtr<CrossThreadClosure> task)
{
MutexLocker locker(m_holderMutex);
ASSERT(m_holder);
@@ -218,20 +218,20 @@ public:
void resetReader() { m_reader = nullptr; }
void signalDone() { m_waitableEvent->signal(); }
const String& result() { return m_context->result(); }
- void postTaskToReadingThread(const WebTraceLocation& location, PassOwnPtr<Closure> task)
+ void postTaskToReadingThread(const WebTraceLocation& location, PassOwnPtr<CrossThreadClosure> task)
{
m_context->postTaskToReadingThread(location, task);
}
- void postTaskToUpdatingThread(const WebTraceLocation& location, PassOwnPtr<Closure> task)
+ void postTaskToUpdatingThread(const WebTraceLocation& location, PassOwnPtr<CrossThreadClosure> task)
{
m_context->postTaskToUpdatingThread(location, task);
}
- void postTaskToReadingThreadAndWait(const WebTraceLocation& location, PassOwnPtr<Closure> task)
+ void postTaskToReadingThreadAndWait(const WebTraceLocation& location, PassOwnPtr<CrossThreadClosure> task)
{
postTaskToReadingThread(location, task);
m_waitableEvent->wait();
}
- void postTaskToUpdatingThreadAndWait(const WebTraceLocation& location, PassOwnPtr<Closure> task)
+ void postTaskToUpdatingThreadAndWait(const WebTraceLocation& location, PassOwnPtr<CrossThreadClosure> task)
{
postTaskToUpdatingThread(location, task);
m_waitableEvent->wait();

Powered by Google App Engine
This is Rietveld 408576698