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 CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ |
6 #define CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/threading/thread.h" | 15 #include "base/threading/thread.h" |
| 16 #include "chrome/test/chromedriver/chrome/status.h" |
16 #include "chrome/test/chromedriver/command.h" | 17 #include "chrome/test/chromedriver/command.h" |
17 #include "chrome/test/chromedriver/command_executor.h" | 18 #include "chrome/test/chromedriver/command_executor.h" |
18 #include "chrome/test/chromedriver/net/sync_websocket_factory.h" | 19 #include "chrome/test/chromedriver/net/sync_websocket_factory.h" |
19 #include "chrome/test/chromedriver/session_map.h" | 20 #include "chrome/test/chromedriver/session_map.h" |
20 #include "chrome/test/chromedriver/status.h" | |
21 #include "chrome/test/chromedriver/synchronized_map.h" | 21 #include "chrome/test/chromedriver/synchronized_map.h" |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class DictionaryValue; | 24 class DictionaryValue; |
25 class Value; | 25 class Value; |
26 } | 26 } |
27 | 27 |
28 class ChromeLauncherImpl; | 28 class ChromeLauncherImpl; |
29 class URLRequestContextGetter; | 29 class URLRequestContextGetter; |
30 | 30 |
(...skipping 20 matching lines...) Expand all Loading... |
51 base::Thread io_thread_; | 51 base::Thread io_thread_; |
52 scoped_refptr<URLRequestContextGetter> context_getter_; | 52 scoped_refptr<URLRequestContextGetter> context_getter_; |
53 SyncWebSocketFactory socket_factory_; | 53 SyncWebSocketFactory socket_factory_; |
54 SessionMap session_map_; | 54 SessionMap session_map_; |
55 SynchronizedMap<std::string, Command> command_map_; | 55 SynchronizedMap<std::string, Command> command_map_; |
56 | 56 |
57 DISALLOW_COPY_AND_ASSIGN(CommandExecutorImpl); | 57 DISALLOW_COPY_AND_ASSIGN(CommandExecutorImpl); |
58 }; | 58 }; |
59 | 59 |
60 #endif // CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ | 60 #endif // CHROME_TEST_CHROMEDRIVER_COMMAND_EXECUTOR_IMPL_H_ |
OLD | NEW |