Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1065)

Unified Diff: chrome/test/webdriver/commands/set_timeout_commands.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/webdriver/commands/set_timeout_commands.h
===================================================================
--- chrome/test/webdriver/commands/set_timeout_commands.h (revision 92173)
+++ 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_
-
« no previous file with comments | « chrome/test/webdriver/commands/screenshot_command.h ('k') | chrome/test/webdriver/commands/source_command.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698