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

Side by Side Diff: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h

Issue 2416863002: Use fetch_event_id (fetchEventID in blink) for FetchEvent (Closed)
Patch Set: Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 void didHandleActivateEvent(int eventID, 63 void didHandleActivateEvent(int eventID,
64 WebServiceWorkerEventResult, 64 WebServiceWorkerEventResult,
65 double eventDispatchTime) override; 65 double eventDispatchTime) override;
66 void didHandleExtendableMessageEvent(int eventID, 66 void didHandleExtendableMessageEvent(int eventID,
67 WebServiceWorkerEventResult, 67 WebServiceWorkerEventResult,
68 double eventDispatchTime) override; 68 double eventDispatchTime) override;
69 void respondToFetchEvent(int responseID, double eventDispatchTime) override; 69 void respondToFetchEvent(int responseID, double eventDispatchTime) override;
70 void respondToFetchEvent(int responseID, 70 void respondToFetchEvent(int responseID,
71 const WebServiceWorkerResponse&, 71 const WebServiceWorkerResponse&,
72 double eventDispatchTime) override; 72 double eventDispatchTime) override;
73 void didHandleFetchEvent(int eventFinishID, 73 void didHandleFetchEvent(int fetchEventID,
74 WebServiceWorkerEventResult, 74 WebServiceWorkerEventResult,
75 double eventDispatchTime) override; 75 double eventDispatchTime) override;
76 void didHandleInstallEvent(int installEventID, 76 void didHandleInstallEvent(int installEventID,
77 WebServiceWorkerEventResult, 77 WebServiceWorkerEventResult,
78 double eventDispatchTime) override; 78 double eventDispatchTime) override;
79 void didHandleNotificationClickEvent(int eventID, 79 void didHandleNotificationClickEvent(int eventID,
80 WebServiceWorkerEventResult, 80 WebServiceWorkerEventResult,
81 double eventDispatchTime) override; 81 double eventDispatchTime) override;
82 void didHandleNotificationCloseEvent(int eventID, 82 void didHandleNotificationCloseEvent(int eventID,
83 WebServiceWorkerEventResult, 83 WebServiceWorkerEventResult,
(...skipping 28 matching lines...) Expand all
112 112
113 private: 113 private:
114 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); 114 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&);
115 115
116 WebServiceWorkerContextClient& m_client; 116 WebServiceWorkerContextClient& m_client;
117 }; 117 };
118 118
119 } // namespace blink 119 } // namespace blink
120 120
121 #endif // ServiceWorkerGlobalScopeClientImpl_h 121 #endif // ServiceWorkerGlobalScopeClientImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698