| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/options/language_hangul_config_view.h" | 5 #include "chrome/browser/chromeos/options/language_hangul_config_view.h" |
| 6 | 6 |
| 7 #include "app/combobox_model.h" | 7 #include "app/combobox_model.h" |
| 8 #include "app/l10n_util.h" | 8 #include "app/l10n_util.h" |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| 11 #include "chrome/browser/chromeos/cros/cros_library.h" | 11 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 12 #include "chrome/browser/chromeos/cros/input_method_library.h" | 12 #include "chrome/browser/chromeos/cros/input_method_library.h" |
| 13 #include "chrome/browser/chromeos/language_preferences.h" | 13 #include "chrome/browser/chromeos/language_preferences.h" |
| 14 #include "chrome/browser/chromeos/preferences.h" | 14 #include "chrome/browser/chromeos/preferences.h" |
| 15 #include "chrome/browser/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 16 #include "chrome/common/notification_type.h" | 16 #include "chrome/common/notification_type.h" |
| 17 #include "chrome/common/pref_names.h" | 17 #include "chrome/common/pref_names.h" |
| 18 #include "grit/generated_resources.h" | 18 #include "grit/generated_resources.h" |
| 19 #include "grit/locale_settings.h" | 19 #include "grit/locale_settings.h" |
| 20 #include "views/controls/button/checkbox.h" | 20 #include "views/controls/button/checkbox.h" |
| 21 #include "views/controls/label.h" | 21 #include "views/controls/label.h" |
| 22 #include "views/grid_layout.h" | 22 #include "views/grid_layout.h" |
| 23 #include "views/standard_layout.h" | 23 #include "views/standard_layout.h" |
| 24 #include "views/window/window.h" | 24 #include "views/window/window.h" |
| 25 | 25 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 void LanguageHangulConfigView::NotifyPrefChanged() { | 177 void LanguageHangulConfigView::NotifyPrefChanged() { |
| 178 const std::string id = keyboard_pref_.GetValue(); | 178 const std::string id = keyboard_pref_.GetValue(); |
| 179 const int index = | 179 const int index = |
| 180 hangul_keyboard_combobox_model_->GetIndexFromID(id); | 180 hangul_keyboard_combobox_model_->GetIndexFromID(id); |
| 181 if (index >= 0) | 181 if (index >= 0) |
| 182 hangul_keyboard_combobox_->SetSelectedItem(index); | 182 hangul_keyboard_combobox_->SetSelectedItem(index); |
| 183 } | 183 } |
| 184 | 184 |
| 185 } // namespace chromeos | 185 } // namespace chromeos |
| OLD | NEW |