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; |
} |