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

Side by Side Diff: third_party/WebKit/public/web/modules/serviceworker/WebServiceWorkerContextProxy.h

Issue 2002883002: ServiceWorker: Store the existence of fetch event handler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 virtual void dispatchActivateEvent(int eventID) = 0; 55 virtual void dispatchActivateEvent(int eventID) = 0;
56 virtual void dispatchExtendableMessageEvent(int eventID, const WebString& me ssage, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&, const WebServiceWorkerClientInfo&) = 0; 56 virtual void dispatchExtendableMessageEvent(int eventID, const WebString& me ssage, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&, const WebServiceWorkerClientInfo&) = 0;
57 virtual void dispatchExtendableMessageEvent(int eventID, const WebString& me ssage, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&, std::unique_ptr<WebServiceWorker::Handle>) = 0; 57 virtual void dispatchExtendableMessageEvent(int eventID, const WebString& me ssage, const WebSecurityOrigin& sourceOrigin, const WebMessagePortChannelArray&, std::unique_ptr<WebServiceWorker::Handle>) = 0;
58 virtual void dispatchInstallEvent(int eventID) = 0; 58 virtual void dispatchInstallEvent(int eventID) = 0;
59 virtual void dispatchFetchEvent(int eventID, const WebServiceWorkerRequest& webRequest) = 0; 59 virtual void dispatchFetchEvent(int eventID, const WebServiceWorkerRequest& webRequest) = 0;
60 virtual void dispatchForeignFetchEvent(int eventID, const WebServiceWorkerRe quest& webRequest) = 0; 60 virtual void dispatchForeignFetchEvent(int eventID, const WebServiceWorkerRe quest& webRequest) = 0;
61 virtual void dispatchNotificationClickEvent(int eventID, int64_t notificatio nID, const WebNotificationData&, int actionIndex) = 0; 61 virtual void dispatchNotificationClickEvent(int eventID, int64_t notificatio nID, const WebNotificationData&, int actionIndex) = 0;
62 virtual void dispatchNotificationCloseEvent(int eventID, int64_t notificatio nID, const WebNotificationData&) = 0; 62 virtual void dispatchNotificationCloseEvent(int eventID, int64_t notificatio nID, const WebNotificationData&) = 0;
63 virtual void dispatchPushEvent(int eventID, const WebString& data) = 0; 63 virtual void dispatchPushEvent(int eventID, const WebString& data) = 0;
64 64
65 virtual bool hasFetchEventHandler() = 0;
66
65 enum LastChanceOption { 67 enum LastChanceOption {
66 IsNotLastChance, 68 IsNotLastChance,
67 IsLastChance 69 IsLastChance
68 }; 70 };
69 71
70 // Once the ServiceWorker has finished handling the sync event, 72 // Once the ServiceWorker has finished handling the sync event,
71 // didHandleSyncEvent is called on the context client. 73 // didHandleSyncEvent is called on the context client.
72 virtual void dispatchSyncEvent(int syncEventID, const WebString& tag, LastCh anceOption) = 0; 74 virtual void dispatchSyncEvent(int syncEventID, const WebString& tag, LastCh anceOption) = 0;
73 }; 75 };
74 76
75 } // namespace blink 77 } // namespace blink
76 78
77 #endif // WebServiceWorkerContextProxy_h 79 #endif // WebServiceWorkerContextProxy_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698