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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.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/core/inspector/InspectorResourceContentLoader.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h
index f22b1463f791ec12277a844be4c5a61c8466fbf4..c219f339cb756f124ca93d21c06779b8eee19ca8 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h
@@ -29,7 +29,7 @@ public:
void dispose();
DECLARE_TRACE();
- void ensureResourcesContentLoaded(PassOwnPtr<Closure> callback);
+ void ensureResourcesContentLoaded(PassOwnPtr<SameThreadClosure> callback);
void didCommitLoadForLocalFrame(LocalFrame*);
private:
@@ -42,7 +42,7 @@ private:
void stop();
bool hasFinished();
- Vector<OwnPtr<Closure>> m_callbacks;
+ Vector<OwnPtr<SameThreadClosure>> m_callbacks;
bool m_allRequestsStarted;
bool m_started;
RawPtrWillBeMember<LocalFrame> m_inspectedFrame;

Powered by Google App Engine
This is Rietveld 408576698