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

Unified Diff: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h

Issue 2893823004: [Payments] Implement openWindow for service worker based payment handler (Closed)
Patch Set: rename ipc messages Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
index d1f23fa897fe0a2f5f32fd0c4d284157d783af54..dd3174fb20cdfddcb8c88c53d41b43f87aa831d0 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
@@ -56,8 +56,12 @@ class ServiceWorkerGlobalScopeClientImpl final
std::unique_ptr<WebServiceWorkerClientCallbacks>) override;
void GetClients(const WebServiceWorkerClientQueryOptions&,
std::unique_ptr<WebServiceWorkerClientsCallbacks>) override;
- void OpenWindow(const WebURL&,
- std::unique_ptr<WebServiceWorkerClientCallbacks>) override;
+ void OpenWindowForClients(
+ const WebURL&,
+ std::unique_ptr<WebServiceWorkerClientCallbacks>) override;
+ void OpenWindowForPaymentHandler(
+ const WebURL&,
+ std::unique_ptr<WebServiceWorkerClientCallbacks>) override;
void SetCachedMetadata(const WebURL&, const char*, size_t) override;
void ClearCachedMetadata(const WebURL&) override;

Powered by Google App Engine
This is Rietveld 408576698