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

Unified Diff: chrome/test/webdriver/commands/html5_storage_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/html5_storage_commands.cc
diff --git a/chrome/test/webdriver/commands/html5_storage_commands.cc b/chrome/test/webdriver/commands/html5_storage_commands.cc
index a16456c3ed1b2311c97643c6d7b4272c5b1c05dc..8b193a6f4b1aae951da757d12c873770d9aaee99 100644
--- a/chrome/test/webdriver/commands/html5_storage_commands.cc
+++ b/chrome/test/webdriver/commands/html5_storage_commands.cc
@@ -13,7 +13,7 @@ namespace webdriver {
LocalStorageCommand::LocalStorageCommand(
const std::vector<std::string>& path_segments,
- const base::DictionaryValue* const parameters)
+ base::DictionaryValue* const parameters)
: WebDriverCommand(path_segments, parameters) {}
LocalStorageCommand::~LocalStorageCommand() {}
@@ -64,7 +64,7 @@ void LocalStorageCommand::ExecuteDelete(Response* const response) {
LocalStorageKeyCommand::LocalStorageKeyCommand(
const std::vector<std::string>& path_segments,
- const base::DictionaryValue* const parameters)
+ base::DictionaryValue* const parameters)
: WebDriverCommand(path_segments, parameters) {}
LocalStorageKeyCommand::~LocalStorageKeyCommand() {}
@@ -103,7 +103,7 @@ void LocalStorageKeyCommand::ExecuteDelete(Response* const response) {
LocalStorageSizeCommand::LocalStorageSizeCommand(
const std::vector<std::string>& path_segments,
- const base::DictionaryValue* const parameters)
+ base::DictionaryValue* const parameters)
: WebDriverCommand(path_segments, parameters) {}
LocalStorageSizeCommand::~LocalStorageSizeCommand() {}
@@ -175,7 +175,7 @@ void SessionStorageCommand::ExecuteDelete(Response* const response) {
SessionStorageKeyCommand::SessionStorageKeyCommand(
const std::vector<std::string>& path_segments,
- const base::DictionaryValue* const parameters)
+ base::DictionaryValue* const parameters)
: WebDriverCommand(path_segments, parameters) {}
SessionStorageKeyCommand::~SessionStorageKeyCommand() {}
@@ -214,7 +214,7 @@ void SessionStorageKeyCommand::ExecuteDelete(Response* const response) {
SessionStorageSizeCommand::SessionStorageSizeCommand(
const std::vector<std::string>& path_segments,
- const base::DictionaryValue* const parameters)
+ base::DictionaryValue* const parameters)
: WebDriverCommand(path_segments, parameters) {}
SessionStorageSizeCommand::~SessionStorageSizeCommand() {}

Powered by Google App Engine
This is Rietveld 408576698