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

Unified Diff: content/browser/service_worker/service_worker_version.h

Issue 1202453002: ServiceWorker: Implement navigate() method in WindowClient (chromium side). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comment Created 5 years, 5 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: 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 47114dc06cf7ff2c06486ca927b795e40a96ee51..70cc4593e7f21ea6cb4c36df1dbf910f52bf5225 100644
--- a/content/browser/service_worker/service_worker_version.h
+++ b/content/browser/service_worker/service_worker_version.h
@@ -466,6 +466,15 @@ class CONTENT_EXPORT ServiceWorkerVersion
const base::string16& message,
const std::vector<TransferredMessagePort>& sent_message_ports);
void OnFocusClient(int request_id, const std::string& client_uuid);
+ void OnNavigateClient(int request_id,
+ const std::string& client_uuid,
+ const GURL& url);
+ void DidNavigateClient(int request_id,
+ int render_process_id,
+ int render_frame_id);
+ void OnNavigateClientFinished(int request_id,
+ const std::string& client_uuid,
+ const ServiceWorkerClientInfo& client);
void OnSkipWaiting(int request_id);
void OnClaimClients(int request_id);
void OnPongFromWorker();

Powered by Google App Engine
This is Rietveld 408576698