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

Unified Diff: ios/web/web_state/ui/crw_web_controller.mm

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: ios/web/web_state/ui/crw_web_controller.mm
diff --git a/ios/web/web_state/ui/crw_web_controller.mm b/ios/web/web_state/ui/crw_web_controller.mm
index c8b1ccdeaa1e63cbec56dbf7f6979a91105611c5..86b333161f0858cbbb27ed3c669d0f1f507bf3eb 100644
--- a/ios/web/web_state/ui/crw_web_controller.mm
+++ b/ios/web/web_state/ui/crw_web_controller.mm
@@ -2617,7 +2617,7 @@ const NSTimeInterval kSnapshotOverlayTransition = 0.5;
std::vector<std::string> federations;
for (const auto& federation_value : *federations_value) {
std::string federation;
- if (!federation_value->GetAsString(&federation)) {
+ if (!federation_value.GetAsString(&federation)) {
DLOG(WARNING) << "JS message parameter 'federations' contains wrong type";
return NO;
}

Powered by Google App Engine
This is Rietveld 408576698