| 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() {}
|
|
|