| 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_WEBWORKER_STUB_H_ | 5 #ifndef CONTENT_WORKER_WEBWORKER_STUB_H_ |
| 6 #define CONTENT_WORKER_WEBWORKER_STUB_H_ | 6 #define CONTENT_WORKER_WEBWORKER_STUB_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/scoped_ptr.h" | 9 #include <vector> |
| 10 |
| 11 #include "base/memory/scoped_ptr.h" |
| 10 #include "content/worker/webworker_stub_base.h" | 12 #include "content/worker/webworker_stub_base.h" |
| 11 #include "content/worker/webworkerclient_proxy.h" | 13 #include "content/worker/webworkerclient_proxy.h" |
| 12 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
| 13 | 15 |
| 14 namespace WebKit { | 16 namespace WebKit { |
| 15 class WebWorker; | 17 class WebWorker; |
| 16 } | 18 } |
| 17 | 19 |
| 18 class WorkerDevToolsAgent; | 20 class WorkerDevToolsAgent; |
| 19 | 21 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 39 const std::vector<int>& new_routing_ids); | 41 const std::vector<int>& new_routing_ids); |
| 40 | 42 |
| 41 WebKit::WebWorker* impl_; | 43 WebKit::WebWorker* impl_; |
| 42 GURL url_; | 44 GURL url_; |
| 43 scoped_ptr<WorkerDevToolsAgent> worker_devtools_agent_; | 45 scoped_ptr<WorkerDevToolsAgent> worker_devtools_agent_; |
| 44 | 46 |
| 45 DISALLOW_COPY_AND_ASSIGN(WebWorkerStub); | 47 DISALLOW_COPY_AND_ASSIGN(WebWorkerStub); |
| 46 }; | 48 }; |
| 47 | 49 |
| 48 #endif // CONTENT_WORKER_WEBWORKER_STUB_H_ | 50 #endif // CONTENT_WORKER_WEBWORKER_STUB_H_ |
| OLD | NEW |