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

Unified Diff: chrome/browser/android/vr_shell/ui_scene.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Fix Android Compilation Error Created 3 years, 9 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/browser/android/vr_shell/ui_scene.cc
diff --git a/chrome/browser/android/vr_shell/ui_scene.cc b/chrome/browser/android/vr_shell/ui_scene.cc
index eaba9e7346a49480d251651dc7f897d660626daa..cce8f9087ce2fcabee0d2b69dda9cae663041b41 100644
--- a/chrome/browser/android/vr_shell/ui_scene.cc
+++ b/chrome/browser/android/vr_shell/ui_scene.cc
@@ -288,7 +288,7 @@ void UiScene::HandleCommands(std::unique_ptr<base::ListValue> commands,
int64_t time_in_micro) {
for (auto& item : *commands) {
base::DictionaryValue* dict;
- CHECK(item->GetAsDictionary(&dict));
+ CHECK(item.GetAsDictionary(&dict));
Command type;
base::DictionaryValue* data;

Powered by Google App Engine
This is Rietveld 408576698