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

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

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/find_element_commands.h
diff --git a/chrome/test/webdriver/commands/find_element_commands.h b/chrome/test/webdriver/commands/find_element_commands.h
index 488d66d55d21796568de15bce23e52e1edc5ec85..d2ede74b5f399cce11bd7d6bc6ecf8c0e6683792 100644
--- a/chrome/test/webdriver/commands/find_element_commands.h
+++ b/chrome/test/webdriver/commands/find_element_commands.h
@@ -19,7 +19,7 @@ class Response;
class FindElementCommand : public WebDriverCommand {
public:
FindElementCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters,
+ DictionaryValue* const parameters,
const bool find_one_element);
virtual ~FindElementCommand();
@@ -41,7 +41,7 @@ class FindElementCommand : public WebDriverCommand {
class FindOneElementCommand : public FindElementCommand {
public:
FindOneElementCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters)
+ DictionaryValue* const parameters)
: FindElementCommand(path_segments, parameters, true) {}
virtual ~FindOneElementCommand() {}
@@ -56,7 +56,7 @@ class FindOneElementCommand : public FindElementCommand {
class FindManyElementsCommand : public FindElementCommand {
public:
FindManyElementsCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters)
+ DictionaryValue* const parameters)
: FindElementCommand(path_segments, parameters, false) {}
virtual ~FindManyElementsCommand() {}

Powered by Google App Engine
This is Rietveld 408576698