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

Unified Diff: chrome/test/webdriver/commands/response.cc

Issue 10834004: Correct const accessors in base/values.(h|cc) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Reverting webdriver:Command::parameters_ to const 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/response.cc
diff --git a/chrome/test/webdriver/commands/response.cc b/chrome/test/webdriver/commands/response.cc
index 07c6e2473c1596ad0a5dda1e6e6aec22d4c9c80a..5dcabeccc64878557f7daf096b6057bd48d25384 100644
--- a/chrome/test/webdriver/commands/response.cc
+++ b/chrome/test/webdriver/commands/response.cc
@@ -43,7 +43,7 @@ void Response::SetStatus(ErrorCode status) {
}
const Value* Response::GetValue() const {
- Value* out = NULL;
+ const Value* out = NULL;
data_.Get(kValueKey, &out);
return out;
}
« no previous file with comments | « chrome/test/webdriver/commands/keys_command.cc ('k') | chrome/test/webdriver/commands/target_locator_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698