OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_SERVER_HTTP_HANDLER_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_SERVER_HTTP_HANDLER_H_ |
6 #define CHROME_TEST_CHROMEDRIVER_SERVER_HTTP_HANDLER_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_SERVER_HTTP_HANDLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.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/macros.h" |
14 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
17 #include "base/threading/thread_checker.h" | 18 #include "base/threading/thread_checker.h" |
18 #include "chrome/test/chromedriver/command.h" | 19 #include "chrome/test/chromedriver/command.h" |
19 #include "chrome/test/chromedriver/commands.h" | 20 #include "chrome/test/chromedriver/commands.h" |
20 #include "chrome/test/chromedriver/element_commands.h" | 21 #include "chrome/test/chromedriver/element_commands.h" |
21 #include "chrome/test/chromedriver/net/sync_websocket_factory.h" | 22 #include "chrome/test/chromedriver/net/sync_websocket_factory.h" |
22 #include "chrome/test/chromedriver/session_commands.h" | 23 #include "chrome/test/chromedriver/session_commands.h" |
23 #include "chrome/test/chromedriver/session_thread_map.h" | 24 #include "chrome/test/chromedriver/session_thread_map.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 | 124 |
124 bool MatchesCommand(const std::string& method, | 125 bool MatchesCommand(const std::string& method, |
125 const std::string& path, | 126 const std::string& path, |
126 const CommandMapping& command, | 127 const CommandMapping& command, |
127 std::string* session_id, | 128 std::string* session_id, |
128 base::DictionaryValue* out_params); | 129 base::DictionaryValue* out_params); |
129 | 130 |
130 } // namespace internal | 131 } // namespace internal |
131 | 132 |
132 #endif // CHROME_TEST_CHROMEDRIVER_SERVER_HTTP_HANDLER_H_ | 133 #endif // CHROME_TEST_CHROMEDRIVER_SERVER_HTTP_HANDLER_H_ |
OLD | NEW |