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

Side by Side Diff: trunk/src/chromeos/ime/input_method_whitelist.cc

Issue 12453021: Revert 190596 "Extract input_method_whitelist.{h|cc} from c/b/ch..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 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.
4
5 #include "chromeos/ime/input_method_whitelist.h"
6
7 #include <vector>
8
9 #include "chromeos/ime/input_method_descriptor.h"
10 #include "chromeos/ime/input_methods.h"
11
12 namespace chromeos {
13 namespace input_method {
14
15 InputMethodWhitelist::InputMethodWhitelist() {
16 for (size_t i = 0; i < arraysize(kInputMethods); ++i) {
17 supported_input_methods_.insert(kInputMethods[i].input_method_id);
18 }
19 }
20
21 InputMethodWhitelist::~InputMethodWhitelist() {
22 }
23
24 bool InputMethodWhitelist::InputMethodIdIsWhitelisted(
25 const std::string& input_method_id) const {
26 return supported_input_methods_.count(input_method_id) > 0;
27 }
28
29 scoped_ptr<InputMethodDescriptors>
30 InputMethodWhitelist::GetSupportedInputMethods() const {
31 scoped_ptr<InputMethodDescriptors> input_methods(new InputMethodDescriptors);
32 input_methods->reserve(arraysize(kInputMethods));
33 for (size_t i = 0; i < arraysize(kInputMethods); ++i) {
34 input_methods->push_back(InputMethodDescriptor(
35 kInputMethods[i].input_method_id,
36 "",
37 kInputMethods[i].xkb_layout_id,
38 kInputMethods[i].language_code,
39 false));
40 }
41 return input_methods.Pass();
42 }
43
44 } // namespace input_method
45 } // namespace chromeos
OLDNEW
« no previous file with comments | « trunk/src/chromeos/ime/input_method_whitelist.h ('k') | trunk/src/chromeos/ime/input_method_whitelist_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698