| Index: content/browser/service_worker/service_worker_version.h
|
| diff --git a/content/browser/service_worker/service_worker_version.h b/content/browser/service_worker/service_worker_version.h
|
| index 96c54453043cc695265eb67c440b6f02a2f8f172..ecd86240a829a05e941ed86526c9e19585534ea9 100644
|
| --- a/content/browser/service_worker/service_worker_version.h
|
| +++ b/content/browser/service_worker/service_worker_version.h
|
| @@ -52,7 +52,6 @@ class ServiceWorkerProviderHost;
|
| class ServiceWorkerRegistration;
|
| class ServiceWorkerURLRequestJob;
|
| struct NavigatorConnectClient;
|
| -struct PlatformNotificationData;
|
| struct ServiceWorkerClientInfo;
|
| struct ServiceWorkerVersionInfo;
|
| struct TransferredMessagePort;
|
| @@ -259,17 +258,6 @@ class CONTENT_EXPORT ServiceWorkerVersion
|
| const base::Closure& prepare_callback,
|
| const FetchCallback& fetch_callback);
|
|
|
| - // Sends notificationclick event to the associated embedded worker and
|
| - // asynchronously calls |callback| when it errors out or it gets a response
|
| - // from the worker to notify completion.
|
| - //
|
| - // This must be called when the status() is ACTIVATED.
|
| - void DispatchNotificationClickEvent(
|
| - const StatusCallback& callback,
|
| - int64_t persistent_notification_id,
|
| - const PlatformNotificationData& notification_data,
|
| - int action_index);
|
| -
|
| // Sends push event to the associated embedded worker and asynchronously calls
|
| // |callback| when it errors out or it gets a response from the worker to
|
| // notify completion.
|
| @@ -403,7 +391,6 @@ class CONTENT_EXPORT ServiceWorkerVersion
|
| REQUEST_ACTIVATE,
|
| REQUEST_INSTALL,
|
| REQUEST_FETCH,
|
| - REQUEST_NOTIFICATION_CLICK,
|
| REQUEST_PUSH,
|
| REQUEST_CUSTOM,
|
| NUM_REQUEST_TYPES
|
| @@ -565,7 +552,6 @@ class CONTENT_EXPORT ServiceWorkerVersion
|
| void OnFetchEventFinished(int request_id,
|
| ServiceWorkerFetchEventResult result,
|
| const ServiceWorkerResponse& response);
|
| - void OnNotificationClickEventFinished(int request_id);
|
| void OnPushEventFinished(int request_id,
|
| blink::WebServiceWorkerEventResult result);
|
| void OnOpenWindow(int request_id, GURL url);
|
| @@ -694,8 +680,6 @@ class CONTENT_EXPORT ServiceWorkerVersion
|
| IDMap<PendingRequest<StatusCallback>, IDMapOwnPointer> activate_requests_;
|
| IDMap<PendingRequest<StatusCallback>, IDMapOwnPointer> install_requests_;
|
| IDMap<PendingRequest<FetchCallback>, IDMapOwnPointer> fetch_requests_;
|
| - IDMap<PendingRequest<StatusCallback>, IDMapOwnPointer>
|
| - notification_click_requests_;
|
| IDMap<PendingRequest<StatusCallback>, IDMapOwnPointer> push_requests_;
|
| IDMap<PendingRequest<StatusCallback>, IDMapOwnPointer> custom_requests_;
|
|
|
|
|