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

Unified Diff: printing/backend/cups_ipp_util.cc

Issue 2232813002: printing: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/backend/cups_ipp_util.cc
diff --git a/printing/backend/cups_ipp_util.cc b/printing/backend/cups_ipp_util.cc
index eb5976d1f20da607493fa0c4bed2669481279ca4..88ae495a2617d0011f4872808e23558fefdf3032 100644
--- a/printing/backend/cups_ipp_util.cc
+++ b/printing/backend/cups_ipp_util.cc
@@ -69,7 +69,7 @@ bool PrinterSupportsValue(const CupsOptionProvider& printer,
base::StringPiece value) {
std::vector<base::StringPiece> values =
printer.GetSupportedOptionValueStrings(name);
- return ContainsValue(values, value);
+ return base::ContainsValue(values, value);
}
DuplexMode PrinterDefaultDuplex(const CupsOptionProvider& printer) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698