| Index: chrome/test/webdriver/commands/set_timeout_commands.h
|
| ===================================================================
|
| --- chrome/test/webdriver/commands/set_timeout_commands.h (revision 91508)
|
| +++ chrome/test/webdriver/commands/set_timeout_commands.h (working copy)
|
| @@ -10,7 +10,9 @@
|
|
|
| #include "chrome/test/webdriver/commands/webdriver_command.h"
|
|
|
| +namespace base {
|
| class DictionaryValue;
|
| +}
|
|
|
| namespace webdriver {
|
|
|
| @@ -19,7 +21,7 @@
|
| class SetTimeoutCommand : public WebDriverCommand {
|
| public:
|
| SetTimeoutCommand(const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters);
|
| + const base::DictionaryValue* const parameters);
|
| virtual ~SetTimeoutCommand();
|
|
|
| virtual bool DoesPost();
|
| @@ -34,7 +36,7 @@
|
| class SetAsyncScriptTimeoutCommand : public SetTimeoutCommand {
|
| public:
|
| SetAsyncScriptTimeoutCommand(const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters);
|
| + const base::DictionaryValue* const parameters);
|
| virtual ~SetAsyncScriptTimeoutCommand();
|
| virtual void SetTimeout(int timeout_ms);
|
|
|
| @@ -46,7 +48,7 @@
|
| class ImplicitWaitCommand : public SetTimeoutCommand {
|
| public:
|
| ImplicitWaitCommand(const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters);
|
| + const base::DictionaryValue* const parameters);
|
| virtual ~ImplicitWaitCommand();
|
| virtual void SetTimeout(int timeout_ms);
|
|
|
| @@ -57,4 +59,3 @@
|
| } // namespace webdriver
|
|
|
| #endif // CHROME_TEST_WEBDRIVER_COMMANDS_SET_TIMEOUT_COMMANDS_H_
|
| -
|
|
|