| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 5 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include <algorithm> | 9 #include <algorithm> |
| 8 #include <functional> | 10 #include <functional> |
| 9 #include <map> | 11 #include <map> |
| 10 #include <utility> | 12 #include <utility> |
| 11 | 13 |
| 12 #include "base/basictypes.h" | 14 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/prefs/pref_service.h" | 16 #include "base/prefs/pref_service.h" |
| 15 #include "base/strings/string_split.h" | 17 #include "base/strings/string_split.h" |
| 16 #include "base/strings/string_util.h" | 18 #include "base/strings/string_util.h" |
| 17 #include "base/strings/utf_string_conversions.h" | 19 #include "base/strings/utf_string_conversions.h" |
| 18 #include "chrome/common/extensions/extension_constants.h" | 20 #include "chrome/common/extensions/extension_constants.h" |
| 19 | 21 |
| 20 // TODO(nona): move this header from this file. | 22 // TODO(nona): move this header from this file. |
| 21 #include "chrome/grit/generated_resources.h" | 23 #include "chrome/grit/generated_resources.h" |
| 22 | 24 |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 "US", | 810 "US", |
| 809 layouts, | 811 layouts, |
| 810 languages, | 812 languages, |
| 811 true, // login keyboard. | 813 true, // login keyboard. |
| 812 GURL(), // options page, not available. | 814 GURL(), // options page, not available. |
| 813 GURL()); // input view page, not available. | 815 GURL()); // input view page, not available. |
| 814 } | 816 } |
| 815 | 817 |
| 816 } // namespace input_method | 818 } // namespace input_method |
| 817 } // namespace chromeos | 819 } // namespace chromeos |
| OLD | NEW |