| Index: chrome/test/webdriver/commands/mouse_commands.cc
|
| diff --git a/chrome/test/webdriver/commands/mouse_commands.cc b/chrome/test/webdriver/commands/mouse_commands.cc
|
| index 6cd75d50f5ad7e8c05b1d34a4cdabb1d0bd878dc..a7471cc2c7aa7f9e2f524a65e6e6e7e1bbd0d6c7 100644
|
| --- a/chrome/test/webdriver/commands/mouse_commands.cc
|
| +++ b/chrome/test/webdriver/commands/mouse_commands.cc
|
| @@ -26,7 +26,7 @@ namespace webdriver {
|
|
|
| MoveAndClickCommand::MoveAndClickCommand(
|
| const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : WebElementCommand(path_segments, parameters) {}
|
|
|
| MoveAndClickCommand::~MoveAndClickCommand() {}
|
| @@ -88,7 +88,7 @@ void MoveAndClickCommand::ExecutePost(Response* response) {
|
| }
|
|
|
| HoverCommand::HoverCommand(const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : WebElementCommand(path_segments, parameters) {}
|
|
|
| HoverCommand::~HoverCommand() {}
|
| @@ -110,7 +110,7 @@ void HoverCommand::ExecutePost(Response* response) {
|
| }
|
|
|
| DragCommand::DragCommand(const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : WebElementCommand(path_segments, parameters) {}
|
|
|
| DragCommand::~DragCommand() {}
|
| @@ -156,7 +156,7 @@ void DragCommand::ExecutePost(Response* response) {
|
|
|
| AdvancedMouseCommand::AdvancedMouseCommand(
|
| const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : WebDriverCommand(path_segments, parameters) {}
|
|
|
| AdvancedMouseCommand::~AdvancedMouseCommand() {}
|
| @@ -167,7 +167,7 @@ bool AdvancedMouseCommand::DoesPost() {
|
|
|
| MoveToCommand::MoveToCommand(
|
| const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : AdvancedMouseCommand(path_segments, parameters), has_element_(false),
|
| has_offset_(false), x_offset_(0), y_offset_(0) {}
|
|
|
| @@ -238,7 +238,7 @@ void MoveToCommand::ExecutePost(Response* const response) {
|
| }
|
|
|
| ClickCommand::ClickCommand(const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : AdvancedMouseCommand(path_segments, parameters) {}
|
|
|
| ClickCommand::~ClickCommand() {}
|
| @@ -278,7 +278,7 @@ void ClickCommand::ExecutePost(Response* const response) {
|
|
|
| ButtonDownCommand::ButtonDownCommand(
|
| const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : AdvancedMouseCommand(path_segments, parameters) {}
|
|
|
| ButtonDownCommand::~ButtonDownCommand() {}
|
| @@ -288,7 +288,7 @@ void ButtonDownCommand::ExecutePost(Response* const response) {
|
| }
|
|
|
| ButtonUpCommand::ButtonUpCommand(const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : AdvancedMouseCommand(path_segments, parameters) {}
|
|
|
| ButtonUpCommand::~ButtonUpCommand() {}
|
| @@ -299,7 +299,7 @@ void ButtonUpCommand::ExecutePost(Response* const response) {
|
|
|
| DoubleClickCommand::DoubleClickCommand(
|
| const std::vector<std::string>& path_segments,
|
| - const DictionaryValue* const parameters)
|
| + DictionaryValue* const parameters)
|
| : AdvancedMouseCommand(path_segments, parameters) {}
|
|
|
| DoubleClickCommand::~DoubleClickCommand() {}
|
|
|