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

Unified Diff: chrome/test/webdriver/commands/navigate_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/navigate_commands.h
diff --git a/chrome/test/webdriver/commands/navigate_commands.h b/chrome/test/webdriver/commands/navigate_commands.h
index 7a6a904bed1cdf5f4bccf5964c052ba18a1d0339..07a033bf19f06f557fb16fadff00a54a81f3e9c0 100644
--- a/chrome/test/webdriver/commands/navigate_commands.h
+++ b/chrome/test/webdriver/commands/navigate_commands.h
@@ -19,7 +19,7 @@ class Response;
class ForwardCommand : public WebDriverCommand {
public:
ForwardCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters);
+ DictionaryValue* const parameters);
virtual ~ForwardCommand();
virtual bool DoesPost() OVERRIDE;
@@ -34,7 +34,7 @@ class ForwardCommand : public WebDriverCommand {
class BackCommand : public WebDriverCommand {
public:
BackCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters);
+ DictionaryValue* const parameters);
virtual ~BackCommand();
virtual bool DoesPost() OVERRIDE;
@@ -49,7 +49,7 @@ class BackCommand : public WebDriverCommand {
class RefreshCommand : public WebDriverCommand {
public:
RefreshCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters);
+ DictionaryValue* const parameters);
virtual ~RefreshCommand();
virtual bool DoesPost() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698