| Index: chrome/test/webdriver/commands/mouse_commands.h
|
| diff --git a/chrome/test/webdriver/commands/mouse_commands.h b/chrome/test/webdriver/commands/mouse_commands.h
|
| index 7b985ca5a75e181b3b2823fe736bff30a92f2a12..5f725f680296569d59f3573d03e51954be05487f 100644
|
| --- a/chrome/test/webdriver/commands/mouse_commands.h
|
| +++ b/chrome/test/webdriver/commands/mouse_commands.h
|
| @@ -24,7 +24,7 @@ class Response;
|
| class MoveAndClickCommand : public WebElementCommand {
|
| public:
|
| MoveAndClickCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~MoveAndClickCommand();
|
|
|
| virtual bool DoesPost() OVERRIDE;
|
| @@ -39,7 +39,7 @@ class MoveAndClickCommand : public WebElementCommand {
|
| class HoverCommand : public WebElementCommand {
|
| public:
|
| HoverCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~HoverCommand();
|
|
|
| virtual bool DoesPost() OVERRIDE;
|
| @@ -55,7 +55,7 @@ class HoverCommand : public WebElementCommand {
|
| class DragCommand : public WebElementCommand {
|
| public:
|
| DragCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~DragCommand();
|
|
|
| virtual bool Init(Response* const response) OVERRIDE;
|
| @@ -77,7 +77,7 @@ class DragCommand : public WebElementCommand {
|
| class AdvancedMouseCommand : public WebDriverCommand {
|
| public:
|
| AdvancedMouseCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~AdvancedMouseCommand();
|
|
|
| virtual bool DoesPost() OVERRIDE;
|
| @@ -94,7 +94,7 @@ class AdvancedMouseCommand : public WebDriverCommand {
|
| class MoveToCommand : public AdvancedMouseCommand {
|
| public:
|
| MoveToCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~MoveToCommand();
|
|
|
| virtual bool Init(Response* const response) OVERRIDE;
|
| @@ -118,7 +118,7 @@ class MoveToCommand : public AdvancedMouseCommand {
|
| class ClickCommand : public AdvancedMouseCommand {
|
| public:
|
| ClickCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~ClickCommand();
|
|
|
| virtual bool Init(Response* const response) OVERRIDE;
|
| @@ -138,7 +138,7 @@ class ClickCommand : public AdvancedMouseCommand {
|
| class ButtonDownCommand : public AdvancedMouseCommand {
|
| public:
|
| ButtonDownCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~ButtonDownCommand();
|
|
|
| virtual void ExecutePost(Response* const response) OVERRIDE;
|
| @@ -154,7 +154,7 @@ class ButtonDownCommand : public AdvancedMouseCommand {
|
| class ButtonUpCommand : public AdvancedMouseCommand {
|
| public:
|
| ButtonUpCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~ButtonUpCommand();
|
|
|
| virtual void ExecutePost(Response* const response) OVERRIDE;
|
| @@ -168,7 +168,7 @@ class ButtonUpCommand : public AdvancedMouseCommand {
|
| class DoubleClickCommand : public AdvancedMouseCommand {
|
| public:
|
| DoubleClickCommand(const std::vector<std::string>& ps,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~DoubleClickCommand();
|
|
|
| virtual void ExecutePost(Response* const response) OVERRIDE;
|
|
|