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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h

Issue 2594423002: Verify that FetchEvent::m_request holds same-thread reference. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
index cf6f25496022e7e0c5b92cdae2a211709234ad50..b2a15213ab408bd52e6e5fa90a667cbae06a91a0 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
@@ -74,7 +74,8 @@ class MODULES_EXPORT FetchEvent final : public ExtendableEvent {
private:
Member<RespondWithObserver> m_observer;
- Member<Request> m_request;
+ // TODO(sof): remove once crbug.com/655926 has been diagnosed.
+ SameThreadCheckedMember<Request> m_request;
Member<PreloadResponseProperty> m_preloadResponseProperty;
String m_clientId;
bool m_isReload;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698