| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_WORKER_WEBWORKERCLIENT_PROXY_H_ | 5 #ifndef CHROME_WORKER_WEBWORKERCLIENT_PROXY_H_ |
| 6 #define CHROME_WORKER_WEBWORKERCLIENT_PROXY_H_ | 6 #define CHROME_WORKER_WEBWORKERCLIENT_PROXY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | |
| 10 | |
| 11 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 12 #include "base/task.h" | 10 #include "base/task.h" |
| 13 #include "ipc/ipc_channel.h" | 11 #include "ipc/ipc_channel.h" |
| 14 #include "third_party/WebKit/WebKit/chromium/public/WebWorkerClient.h" | 12 #include "third_party/WebKit/WebKit/chromium/public/WebWorkerClient.h" |
| 15 | 13 |
| 16 namespace WebKit { | 14 namespace WebKit { |
| 17 class WebApplicationCacheHost; | 15 class WebApplicationCacheHost; |
| 18 class WebApplicationCacheHostClient; | 16 class WebApplicationCacheHostClient; |
| 19 class WebFrame; | 17 class WebFrame; |
| 20 class WebWorker; | 18 class WebWorker; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 89 |
| 92 int route_id_; | 90 int route_id_; |
| 93 int appcache_host_id_; | 91 int appcache_host_id_; |
| 94 WebWorkerStubBase* stub_; | 92 WebWorkerStubBase* stub_; |
| 95 ScopedRunnableMethodFactory<WebWorkerClientProxy> kill_process_factory_; | 93 ScopedRunnableMethodFactory<WebWorkerClientProxy> kill_process_factory_; |
| 96 | 94 |
| 97 DISALLOW_COPY_AND_ASSIGN(WebWorkerClientProxy); | 95 DISALLOW_COPY_AND_ASSIGN(WebWorkerClientProxy); |
| 98 }; | 96 }; |
| 99 | 97 |
| 100 #endif // CHROME_WORKER_WEBWORKERCLIENT_PROXY_H_ | 98 #endif // CHROME_WORKER_WEBWORKERCLIENT_PROXY_H_ |
| OLD | NEW |