OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_WEBSHAREDWORKER_STUB_H_ | 5 #ifndef CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_ |
6 #define CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_ | 6 #define CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
10 #include "content/worker/websharedworkerclient_proxy.h" | 9 #include "content/worker/websharedworkerclient_proxy.h" |
11 #include "content/worker/worker_webapplicationcachehost_impl.h" | 10 #include "content/worker/worker_webapplicationcachehost_impl.h" |
12 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
13 #include "ipc/ipc_channel.h" | 12 #include "ipc/ipc_channel.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorker.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorker.h" |
15 | 14 |
16 namespace WebKit { | 15 namespace WebKit { |
17 class WebSharedWorker; | 16 class WebSharedWorker; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 scoped_ptr<SharedWorkerDevToolsAgent> worker_devtools_agent_; | 71 scoped_ptr<SharedWorkerDevToolsAgent> worker_devtools_agent_; |
73 | 72 |
74 typedef std::pair<int, int> PendingConnectInfo; | 73 typedef std::pair<int, int> PendingConnectInfo; |
75 typedef std::vector<PendingConnectInfo> PendingConnectInfoList; | 74 typedef std::vector<PendingConnectInfo> PendingConnectInfoList; |
76 PendingConnectInfoList pending_connects_; | 75 PendingConnectInfoList pending_connects_; |
77 | 76 |
78 DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerStub); | 77 DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerStub); |
79 }; | 78 }; |
80 | 79 |
81 #endif // CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_ | 80 #endif // CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_ |
OLD | NEW |