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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp

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/core/inspector/InspectorResourceContentLoader.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
index b58780e4bc353bc49660a0c932a875426ef2e195..344b77e4a53cd98d18a26b5fcc5489cb954cc4aa 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
@@ -149,7 +149,7 @@ void InspectorResourceContentLoader::start()
checkDone();
}
-void InspectorResourceContentLoader::ensureResourcesContentLoaded(PassOwnPtr<Closure> callback)
+void InspectorResourceContentLoader::ensureResourcesContentLoaded(PassOwnPtr<SameThreadClosure> callback)
{
if (!m_started)
start();
@@ -204,7 +204,7 @@ void InspectorResourceContentLoader::checkDone()
{
if (!hasFinished())
return;
- Vector<OwnPtr<Closure>> callbacks;
+ Vector<OwnPtr<SameThreadClosure>> callbacks;
callbacks.swap(m_callbacks);
for (const auto& callback : callbacks)
(*callback)();

Powered by Google App Engine
This is Rietveld 408576698