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 CHROME_TEST_WEBDRIVER_COMMANDS_WEBDRIVER_COMMAND_H_ | 5 #ifndef CHROME_TEST_WEBDRIVER_COMMANDS_WEBDRIVER_COMMAND_H_ |
6 #define CHROME_TEST_WEBDRIVER_COMMANDS_WEBDRIVER_COMMAND_H_ | 6 #define CHROME_TEST_WEBDRIVER_COMMANDS_WEBDRIVER_COMMAND_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "chrome/test/webdriver/commands/command.h" | 11 #include "chrome/test/webdriver/commands/command.h" |
12 | 12 |
| 13 namespace base { |
13 class DictionaryValue; | 14 class DictionaryValue; |
| 15 } |
14 | 16 |
15 namespace webdriver { | 17 namespace webdriver { |
16 | 18 |
17 class Response; | 19 class Response; |
18 class Session; | 20 class Session; |
19 | 21 |
20 // All URLs that are found in the document: | 22 // All URLs that are found in the document: |
21 // http://code.google.com/p/selenium/wiki/JsonWireProtocol | 23 // http://code.google.com/p/selenium/wiki/JsonWireProtocol |
22 // and are to be supported for all browsers and platforms should inhert | 24 // and are to be supported for all browsers and platforms should inhert |
23 // this class. For cases which do not invlove interaction with the | 25 // this class. For cases which do not invlove interaction with the |
24 // browser, such a transfering a file, inhert from the Command class | 26 // browser, such a transfering a file, inhert from the Command class |
25 // directly. | 27 // directly. |
26 class WebDriverCommand : public Command { | 28 class WebDriverCommand : public Command { |
27 public: | 29 public: |
28 WebDriverCommand(const std::vector<std::string>& path_segments, | 30 WebDriverCommand(const std::vector<std::string>& path_segments, |
29 const DictionaryValue* const parameters); | 31 const base::DictionaryValue* const parameters); |
30 virtual ~WebDriverCommand(); | 32 virtual ~WebDriverCommand(); |
31 | 33 |
32 // Initializes this webdriver command by fetching the command session. | 34 // Initializes this webdriver command by fetching the command session. |
33 virtual bool Init(Response* const response); | 35 virtual bool Init(Response* const response); |
34 | 36 |
35 protected: | 37 protected: |
36 Session* session_; | 38 Session* session_; |
37 | 39 |
38 DISALLOW_COPY_AND_ASSIGN(WebDriverCommand); | 40 DISALLOW_COPY_AND_ASSIGN(WebDriverCommand); |
39 }; | 41 }; |
40 | 42 |
41 } // namespace webdriver | 43 } // namespace webdriver |
42 | 44 |
43 #endif // CHROME_TEST_WEBDRIVER_COMMANDS_WEBDRIVER_COMMAND_H_ | 45 #endif // CHROME_TEST_WEBDRIVER_COMMANDS_WEBDRIVER_COMMAND_H_ |
OLD | NEW |