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

Unified Diff: chrome/test/webdriver/commands/mouse_commands.cc

Issue 10834004: Correct const accessors in base/values.(h|cc) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: One more, Windows-only Created 8 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/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() {}

Powered by Google App Engine
This is Rietveld 408576698