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

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

Issue 1632113004: ServiceWorker: Add initial implementation of ExtendableMessageEvent behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 unified diff | Download patch
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy); 68 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy);
69 USING_FAST_MALLOC_WILL_BE_REMOVED(ServiceWorkerGlobalScopeProxy); 69 USING_FAST_MALLOC_WILL_BE_REMOVED(ServiceWorkerGlobalScopeProxy);
70 public: 70 public:
71 static PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbed dedWorkerImpl&, Document&, WebServiceWorkerContextClient&); 71 static PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbed dedWorkerImpl&, Document&, WebServiceWorkerContextClient&);
72 ~ServiceWorkerGlobalScopeProxy() override; 72 ~ServiceWorkerGlobalScopeProxy() override;
73 73
74 // WebServiceWorkerContextProxy overrides: 74 // WebServiceWorkerContextProxy overrides:
75 void setRegistration(WebPassOwnPtr<WebServiceWorkerRegistration::Handle>) ov erride; 75 void setRegistration(WebPassOwnPtr<WebServiceWorkerRegistration::Handle>) ov erride;
76 void dispatchActivateEvent(int) override; 76 void dispatchActivateEvent(int) override;
77 void dispatchCrossOriginMessageEvent(const WebCrossOriginServiceWorkerClient &, const WebString& message, const WebMessagePortChannelArray&) override; 77 void dispatchCrossOriginMessageEvent(const WebCrossOriginServiceWorkerClient &, const WebString& message, const WebMessagePortChannelArray&) override;
78 void dispatchExtendableMessageEvent(int, const WebString& message, const Web MessagePortChannelArray&) override;
78 void dispatchFetchEvent(int, const WebServiceWorkerRequest&) override; 79 void dispatchFetchEvent(int, const WebServiceWorkerRequest&) override;
79 void dispatchForeignFetchEvent(int, const WebServiceWorkerRequest&) override ; 80 void dispatchForeignFetchEvent(int, const WebServiceWorkerRequest&) override ;
80 void dispatchGeofencingEvent(int, WebGeofencingEventType, const WebString& r egionID, const WebCircularGeofencingRegion&) override; 81 void dispatchGeofencingEvent(int, WebGeofencingEventType, const WebString& r egionID, const WebCircularGeofencingRegion&) override;
81 void dispatchInstallEvent(int) override; 82 void dispatchInstallEvent(int) override;
82 void dispatchMessageEvent(const WebString& message, const WebMessagePortChan nelArray&) override; 83 void dispatchMessageEvent(const WebString& message, const WebMessagePortChan nelArray&) override;
83 void dispatchNotificationClickEvent(int, int64_t notificationID, const WebNo tificationData&, int actionIndex) override; 84 void dispatchNotificationClickEvent(int, int64_t notificationID, const WebNo tificationData&, int actionIndex) override;
84 void dispatchPushEvent(int, const WebString& data) override; 85 void dispatchPushEvent(int, const WebString& data) override;
85 void dispatchServicePortConnectEvent(WebServicePortConnectEventCallbacks*, c onst WebURL& targetURL, const WebString& origin, WebServicePortID) override; 86 void dispatchServicePortConnectEvent(WebServicePortConnectEventCallbacks*, c onst WebURL& targetURL, const WebString& origin, WebServicePortID) override;
86 void dispatchSyncEvent(int, const WebSyncRegistration&, LastChanceOption) ov erride; 87 void dispatchSyncEvent(int, const WebSyncRegistration&, LastChanceOption) ov erride;
87 88
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 KURL m_documentURL; 123 KURL m_documentURL;
123 124
124 WebServiceWorkerContextClient* m_client; 125 WebServiceWorkerContextClient* m_client;
125 126
126 RawPtrWillBeMember<ServiceWorkerGlobalScope> m_workerGlobalScope; 127 RawPtrWillBeMember<ServiceWorkerGlobalScope> m_workerGlobalScope;
127 }; 128 };
128 129
129 } // namespace blink 130 } // namespace blink
130 131
131 #endif // ServiceWorkerGlobalScopeProxy_h 132 #endif // ServiceWorkerGlobalScopeProxy_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698