Index: chrome/browser/about_flags.cc |
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
index 88729a47cfdf4d3035980e0d4cdf3667dc8c376f..d58c7189a7fab0c5f6ea43db3f563563b38f7e7e 100644 |
--- a/chrome/browser/about_flags.cc |
+++ b/chrome/browser/about_flags.cc |
@@ -2449,7 +2449,7 @@ void ReportCustomFlags(const std::string& uma_histogram_hame, |
const std::set<std::string>& command_line_difference) { |
for (const std::string& flag : command_line_difference) { |
int uma_id = about_flags::testing::kBadSwitchFormatHistogramId; |
- if (base::StartsWithASCII(flag, "--", true /* case_sensitive */)) { |
+ if (base::StartsWith(flag, "--", base::CompareCase::SENSITIVE)) { |
// Skip '--' before switch name. |
std::string switch_name(flag.substr(2)); |