OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WORKER_WEBWORKERCLIENT_PROXY_H_ | 5 #ifndef CONTENT_WORKER_WEBWORKERCLIENT_PROXY_H_ |
6 #define CONTENT_WORKER_WEBWORKERCLIENT_PROXY_H_ | 6 #define CONTENT_WORKER_WEBWORKERCLIENT_PROXY_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "ipc/ipc_channel.h" | 10 #include "ipc/ipc_channel.h" |
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystem.h" | 11 #include "third_party/WebKit/public/platform/WebFileSystem.h" |
12 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystemType.h
" | 12 #include "third_party/WebKit/public/platform/WebFileSystemType.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorkerClient
.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorkerClient
.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageQuotaCallba
cks.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageQuotaCallba
cks.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageQuotaType.h
" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageQuotaType.h
" |
16 | 16 |
17 namespace WebKit { | 17 namespace WebKit { |
18 class WebApplicationCacheHost; | 18 class WebApplicationCacheHost; |
19 class WebApplicationCacheHostClient; | 19 class WebApplicationCacheHostClient; |
20 class WebFrame; | 20 class WebFrame; |
21 } | 21 } |
22 | 22 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 WebSharedWorkerStub* stub_; | 102 WebSharedWorkerStub* stub_; |
103 base::WeakPtrFactory<WebSharedWorkerClientProxy> weak_factory_; | 103 base::WeakPtrFactory<WebSharedWorkerClientProxy> weak_factory_; |
104 SharedWorkerDevToolsAgent* devtools_agent_; | 104 SharedWorkerDevToolsAgent* devtools_agent_; |
105 | 105 |
106 DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerClientProxy); | 106 DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerClientProxy); |
107 }; | 107 }; |
108 | 108 |
109 } // namespace content | 109 } // namespace content |
110 | 110 |
111 #endif // CONTENT_WORKER_WEBWORKERCLIENT_PROXY_H_ | 111 #endif // CONTENT_WORKER_WEBWORKERCLIENT_PROXY_H_ |
OLD | NEW |