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

Unified Diff: chrome/test/webdriver/commands/target_locator_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
« no previous file with comments | « chrome/test/webdriver/commands/source_command.h ('k') | chrome/test/webdriver/commands/webdriver_command.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/commands/target_locator_commands.h
===================================================================
--- chrome/test/webdriver/commands/target_locator_commands.h (revision 92173)
+++ chrome/test/webdriver/commands/target_locator_commands.h (working copy)
@@ -10,7 +10,9 @@
#include "chrome/test/webdriver/commands/webdriver_command.h"
+namespace base {
class DictionaryValue;
+}
namespace webdriver {
@@ -22,7 +24,7 @@
class WindowHandleCommand : public WebDriverCommand {
public:
WindowHandleCommand(const std::vector<std::string>& path_segments,
- DictionaryValue* parameters);
+ base::DictionaryValue* parameters);
virtual ~WindowHandleCommand();
virtual bool DoesGet();
@@ -37,7 +39,7 @@
class WindowHandlesCommand : public WebDriverCommand {
public:
WindowHandlesCommand(const std::vector<std::string>& path_segments,
- DictionaryValue* parameters);
+ base::DictionaryValue* parameters);
virtual ~WindowHandlesCommand();
virtual bool DoesGet();
@@ -53,7 +55,7 @@
class WindowCommand : public WebDriverCommand {
public:
WindowCommand(const std::vector<std::string>& path_segments,
- DictionaryValue* parameters);
+ base::DictionaryValue* parameters);
virtual ~WindowCommand();
virtual bool DoesPost();
@@ -70,7 +72,7 @@
class SwitchFrameCommand : public WebDriverCommand {
public:
SwitchFrameCommand(const std::vector<std::string>& path_segments,
- DictionaryValue* parameters);
+ base::DictionaryValue* parameters);
virtual ~SwitchFrameCommand();
virtual bool DoesPost();
@@ -86,7 +88,7 @@
class ActiveElementCommand : public WebDriverCommand {
public:
ActiveElementCommand(const std::vector<std::string>& path_segments,
- DictionaryValue* parameters);
+ base::DictionaryValue* parameters);
virtual ~ActiveElementCommand();
virtual bool DoesPost();
« no previous file with comments | « chrome/test/webdriver/commands/source_command.h ('k') | chrome/test/webdriver/commands/webdriver_command.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698