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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h

Issue 2893823004: [Payments] Implement openWindow for service worker based payment handler (Closed)
Patch Set: correct file changes Created 3 years, 7 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/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
index 43c4452e105d4e2eceee39aeaea7fd41a7f49055..d943983b45d76760390a2118eafabfecead4d635 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
@@ -71,6 +71,10 @@ class MODULES_EXPORT ServiceWorkerGlobalScopeClient
std::unique_ptr<WebServiceWorkerClientsCallbacks>) = 0;
virtual void OpenWindow(const WebURL&,
std::unique_ptr<WebServiceWorkerClientCallbacks>) = 0;
+ virtual void OpenWindowForPaymentHandle(
+ const WebURL& redirect_url,
+ const WebURL& url_to_open,
+ std::unique_ptr<WebServiceWorkerClientCallbacks>) = 0;
virtual void SetCachedMetadata(const WebURL&, const char*, size_t) = 0;
virtual void ClearCachedMetadata(const WebURL&) = 0;

Powered by Google App Engine
This is Rietveld 408576698