OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_REGISTRATION_IMPL_H_ | 5 #ifndef CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_REGISTRATION_IMPL_H_ |
6 #define CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_REGISTRATION_IMPL_H_ | 6 #define CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_REGISTRATION_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
12 #include "third_party/WebKit/public/platform/WebServiceWorkerRegistration.h" | 12 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor
kerRegistration.h" |
13 | 13 |
14 namespace blink { | 14 namespace blink { |
15 class WebServiceWorker; | 15 class WebServiceWorker; |
16 class WebServiceWorkerRegistrationProxy; | 16 class WebServiceWorkerRegistrationProxy; |
17 } | 17 } |
18 | 18 |
19 namespace content { | 19 namespace content { |
20 | 20 |
21 class ServiceWorkerRegistrationHandleReference; | 21 class ServiceWorkerRegistrationHandleReference; |
22 class ThreadSafeSender; | 22 class ThreadSafeSender; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 blink::WebServiceWorkerRegistrationProxy* proxy_; | 68 blink::WebServiceWorkerRegistrationProxy* proxy_; |
69 | 69 |
70 std::vector<QueuedTask> queued_tasks_; | 70 std::vector<QueuedTask> queued_tasks_; |
71 | 71 |
72 DISALLOW_COPY_AND_ASSIGN(WebServiceWorkerRegistrationImpl); | 72 DISALLOW_COPY_AND_ASSIGN(WebServiceWorkerRegistrationImpl); |
73 }; | 73 }; |
74 | 74 |
75 } // namespace content | 75 } // namespace content |
76 | 76 |
77 #endif // CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_REGISTRATION_IMPL_H_ | 77 #endif // CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_REGISTRATION_IMPL_H_ |
OLD | NEW |