| 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 f6b3e02fb1f00f151b01cf3df024961996527a1f..6d539df6006f925c46879c3f6b1b32e6cb858018 100644
|
| --- a/content/browser/service_worker/service_worker_version.h
|
| +++ b/content/browser/service_worker/service_worker_version.h
|
| @@ -56,6 +56,7 @@ class HttpResponseInfo;
|
|
|
| namespace content {
|
|
|
| +class MessagePort;
|
| class ServiceWorkerContextCore;
|
| class ServiceWorkerProviderHost;
|
| class ServiceWorkerRegistration;
|
| @@ -660,9 +661,10 @@ class CONTENT_EXPORT ServiceWorkerVersion
|
| void OnClearCachedMetadata(const GURL& url);
|
| void OnClearCachedMetadataFinished(int64_t callback_id, int result);
|
|
|
| - void OnPostMessageToClient(const std::string& client_uuid,
|
| - const base::string16& message,
|
| - const std::vector<int>& sent_message_ports);
|
| + void OnPostMessageToClient(
|
| + const std::string& client_uuid,
|
| + const base::string16& message,
|
| + const std::vector<MessagePort>& sent_message_ports);
|
| void OnFocusClient(int request_id, const std::string& client_uuid);
|
| void OnNavigateClient(int request_id,
|
| const std::string& client_uuid,
|
|
|