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

Unified Diff: content/public/common/window_container_type.cc

Issue 1172753003: Move LowerCaseEqualsASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util
Patch Set: Created 5 years, 6 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 | « content/common/android/address_parser_internal.cc ('k') | content/renderer/dom_serializer_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/window_container_type.cc
diff --git a/content/public/common/window_container_type.cc b/content/public/common/window_container_type.cc
index ec3b12c6364bfda16a3f8219a3b1fe076697bdce..57c91d0e429339dac3bb95a184877cf88427a6b0 100644
--- a/content/public/common/window_container_type.cc
+++ b/content/public/common/window_container_type.cc
@@ -22,11 +22,11 @@ WindowContainerType WindowFeaturesToContainerType(
bool persistent = false;
for (size_t i = 0; i < window_features.additionalFeatures.size(); ++i) {
- if (LowerCaseEqualsASCII(window_features.additionalFeatures[i],
- kBackground))
+ if (base::LowerCaseEqualsASCII(window_features.additionalFeatures[i],
+ kBackground))
background = true;
- else if (LowerCaseEqualsASCII(window_features.additionalFeatures[i],
- kPersistent))
+ else if (base::LowerCaseEqualsASCII(window_features.additionalFeatures[i],
+ kPersistent))
persistent = true;
}
« no previous file with comments | « content/common/android/address_parser_internal.cc ('k') | content/renderer/dom_serializer_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698