| Index: chrome/test/webdriver/commands/html5_storage_commands.h
|
| diff --git a/chrome/test/webdriver/commands/html5_storage_commands.h b/chrome/test/webdriver/commands/html5_storage_commands.h
|
| index d108fa29374abfa0bedc6a6907b2f63cbed61503..b9795977e670c5fe5077e6d57eb213827fc0d209 100644
|
| --- a/chrome/test/webdriver/commands/html5_storage_commands.h
|
| +++ b/chrome/test/webdriver/commands/html5_storage_commands.h
|
| @@ -21,7 +21,7 @@ class Response;
|
| class LocalStorageCommand : public WebDriverCommand {
|
| public:
|
| LocalStorageCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~LocalStorageCommand();
|
|
|
| virtual bool DoesGet() OVERRIDE;
|
| @@ -44,7 +44,7 @@ class LocalStorageCommand : public WebDriverCommand {
|
| class LocalStorageKeyCommand : public WebDriverCommand {
|
| public:
|
| LocalStorageKeyCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~LocalStorageKeyCommand();
|
|
|
| virtual bool DoesGet() OVERRIDE;
|
| @@ -63,7 +63,7 @@ class LocalStorageKeyCommand : public WebDriverCommand {
|
| class LocalStorageSizeCommand : public WebDriverCommand {
|
| public:
|
| LocalStorageSizeCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~LocalStorageSizeCommand();
|
|
|
| virtual bool DoesGet() OVERRIDE;
|
| @@ -101,7 +101,7 @@ class SessionStorageCommand : public WebDriverCommand {
|
| class SessionStorageKeyCommand : public WebDriverCommand {
|
| public:
|
| SessionStorageKeyCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~SessionStorageKeyCommand();
|
|
|
| virtual bool DoesGet() OVERRIDE;
|
| @@ -120,7 +120,7 @@ class SessionStorageKeyCommand : public WebDriverCommand {
|
| class SessionStorageSizeCommand : public WebDriverCommand {
|
| public:
|
| SessionStorageSizeCommand(const std::vector<std::string>& path_segments,
|
| - const base::DictionaryValue* const parameters);
|
| + base::DictionaryValue* const parameters);
|
| virtual ~SessionStorageSizeCommand();
|
|
|
| virtual bool DoesGet() OVERRIDE;
|
|
|