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..7389bd148b1019b33b818fcc97f631b77239e5f1 100644 |
--- a/content/public/common/window_container_type.cc |
+++ b/content/public/common/window_container_type.cc |
@@ -22,11 +22,13 @@ 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( |
+ base::string16(window_features.additionalFeatures[i]), |
+ kBackground)) |
background = true; |
- else if (LowerCaseEqualsASCII(window_features.additionalFeatures[i], |
- kPersistent)) |
+ else if (base::LowerCaseEqualsASCII( |
+ base::string16(window_features.additionalFeatures[i]), |
+ kPersistent)) |
persistent = true; |
} |