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

Unified Diff: chrome/browser/chromeos/printing/printers_manager.cc

Issue 2816513002: Revert of Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Created 3 years, 8 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/chromeos/printing/printers_manager.cc
diff --git a/chrome/browser/chromeos/printing/printers_manager.cc b/chrome/browser/chromeos/printing/printers_manager.cc
index 4bcef70c45e7664922e193bd3c1ed25789cbb832..0cded68079160126c92c84aca9ca513070d2de05 100644
--- a/chrome/browser/chromeos/printing/printers_manager.cc
+++ b/chrome/browser/chromeos/printing/printers_manager.cc
@@ -180,7 +180,7 @@
recommended_printer_ids_.clear();
for (const auto& value : *values) {
std::string printer_json;
- if (!value.GetAsString(&printer_json)) {
+ if (!value->GetAsString(&printer_json)) {
NOTREACHED();
continue;
}

Powered by Google App Engine
This is Rietveld 408576698