| Index: chrome/browser/extensions/default_apps.cc
|
| diff --git a/chrome/browser/extensions/default_apps.cc b/chrome/browser/extensions/default_apps.cc
|
| index 1688509f19b485edd9606e59c2350462e43a8b30..7b9c5605e4a5dcb1c7654b94f45311f5023f0bdf 100644
|
| --- a/chrome/browser/extensions/default_apps.cc
|
| +++ b/chrome/browser/extensions/default_apps.cc
|
| @@ -35,7 +35,7 @@ bool IsLocaleSupported() {
|
| // TODO(rogerta): Do this check dynamically once the webstore can expose
|
| // an API. See http://crbug.com/101357
|
| const std::string& locale = g_browser_process->GetApplicationLocale();
|
| - static const char* unsupported_locales[] = {"CN", "TR", "IR"};
|
| + static const char* const unsupported_locales[] = {"CN", "TR", "IR"};
|
| for (size_t i = 0; i < arraysize(unsupported_locales); ++i) {
|
| if (EndsWith(locale, unsupported_locales[i], false)) {
|
| return false;
|
|
|