Supervised user whitelists: Cleanup
[chromium-blink-merge.git] / ui / base / l10n / l10n_util_posix.cc
blob590cfb7b58d5fab431d33fe7663bc1c36906ddb4
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include <string>
7 #if defined(OS_CHROMEOS)
8 #include "base/basictypes.h"
9 #include "base/strings/string_util.h"
10 #endif
12 namespace l10n_util {
14 bool IsLocaleSupportedByOS(const std::string& locale) {
15 #if defined(OS_CHROMEOS)
16 // We don't have translations yet for am, and sw.
17 // TODO(jungshik): Once the above issues are resolved, change this back
18 // to return true.
19 static const char kUnsupportedLocales[][3] = {"am", "sw"};
20 for (size_t i = 0; i < arraysize(kUnsupportedLocales); ++i) {
21 if (LowerCaseEqualsASCII(locale, kUnsupportedLocales[i]))
22 return false;
24 return true;
25 #else
26 // Return true blindly for now.
27 return true;
28 #endif
31 } // namespace l10n_util