OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROXY_H_ | |
6 #define CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROXY_H_ | |
7 | |
8 #include "base/compiler_specific.h" | |
9 #include "third_party/WebKit/public/platform/WebServiceWorker.h" | |
10 #include "third_party/WebKit/public/web/WebFrame.h" | |
11 | |
12 namespace content { | |
13 | |
14 class WebServiceWorkerImpl | |
michaeln
2013/09/30 23:41:27
The name of the class vs the name of the file is c
alecflett
2013/10/01 00:17:04
I agree but I'm running out of names for things th
kinuko
2013/10/01 07:48:11
Doesn't just a webserviceworker_impl.{cc,h} work?
| |
15 : NON_EXPORTED_BASE(public WebKit::WebServiceWorker) { | |
16 public: | |
17 WebServiceWorkerImpl(int32 worker_id, bool registered) | |
18 : worker_id_(worker_id), registered_(registered) {} | |
19 virtual ~WebServiceWorkerImpl(); | |
20 | |
kinuko
2013/09/30 12:41:17
Not directly related to this CL, but if you guys h
alecflett
2013/10/01 00:17:04
This needs to be flushed out on github, here's whe
kinuko
2013/10/01 07:48:11
Thanks!
| |
21 private: | |
22 int32 worker_id_ ALLOW_UNUSED; | |
23 bool registered_ ALLOW_UNUSED; | |
24 }; | |
25 | |
26 } // namespace content | |
27 | |
28 #endif // CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROXY_H_ | |
OLD | NEW |