| Index: content/common/service_worker/service_worker_client_info.h
|
| diff --git a/content/common/service_worker/service_worker_client_info.h b/content/common/service_worker/service_worker_client_info.h
|
| index 64c2317c82b8301452aca9b35abe6b3c651fb6be..7a299509d5debe1d3d892d3f128a4dc684a98fe7 100644
|
| --- a/content/common/service_worker/service_worker_client_info.h
|
| +++ b/content/common/service_worker/service_worker_client_info.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "content/public/common/request_context_frame_type.h"
|
| #include "third_party/WebKit/public/platform/WebPageVisibilityState.h"
|
| +#include "third_party/WebKit/public/platform/WebServiceWorkerClientType.h"
|
| #include "url/gurl.h"
|
|
|
| namespace content {
|
| @@ -21,7 +22,8 @@ struct ServiceWorkerClientInfo {
|
| ServiceWorkerClientInfo(blink::WebPageVisibilityState page_visibility_state,
|
| bool is_focused,
|
| const GURL& url,
|
| - RequestContextFrameType frame_type);
|
| + RequestContextFrameType frame_type,
|
| + blink::WebServiceWorkerClientType client_type);
|
|
|
| // Returns whether the instance is empty.
|
| bool IsEmpty() const;
|
| @@ -35,6 +37,7 @@ struct ServiceWorkerClientInfo {
|
| bool is_focused;
|
| GURL url;
|
| RequestContextFrameType frame_type;
|
| + blink::WebServiceWorkerClientType client_type;
|
| };
|
|
|
| } // namespace content
|
|
|