| 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/system_page_view.h" | 5 #include "chrome/browser/chromeos/options/system_page_view.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "app/l10n_util.h" | 10 #include "app/l10n_util.h" |
| 11 #include "app/combobox_model.h" | 11 #include "app/combobox_model.h" |
| 12 #include "base/stl_util-inl.h" | 12 #include "base/stl_util-inl.h" |
| 13 #include "base/string16.h" | 13 #include "base/string16.h" |
| 14 #include "base/string_util.h" | 14 #include "base/string_util.h" |
| 15 #include "base/utf_string_conversions.h" | 15 #include "base/utf_string_conversions.h" |
| 16 #include "chrome/browser/chromeos/cros/cros_library.h" | 16 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 17 #include "chrome/browser/chromeos/cros/keyboard_library.h" | 17 #include "chrome/browser/chromeos/cros/keyboard_library.h" |
| 18 #include "chrome/browser/chromeos/cros/system_library.h" | 18 #include "chrome/browser/chromeos/cros/system_library.h" |
| 19 #include "chrome/browser/chromeos/language_preferences.h" | 19 #include "chrome/browser/chromeos/language_preferences.h" |
| 20 #include "chrome/browser/chromeos/options/language_config_util.h" | 20 #include "chrome/browser/chromeos/options/language_config_util.h" |
| 21 #include "chrome/browser/chromeos/options/language_config_view.h" | 21 #include "chrome/browser/chromeos/options/language_config_view.h" |
| 22 #include "chrome/browser/chromeos/options/options_window_view.h" | 22 #include "chrome/browser/chromeos/options/options_window_view.h" |
| 23 #include "chrome/browser/pref_member.h" | 23 #include "chrome/browser/prefs/pref_member.h" |
| 24 #include "chrome/browser/profile.h" | 24 #include "chrome/browser/profile.h" |
| 25 #include "chrome/common/pref_names.h" | 25 #include "chrome/common/pref_names.h" |
| 26 #include "grit/generated_resources.h" | 26 #include "grit/generated_resources.h" |
| 27 #include "unicode/timezone.h" | 27 #include "unicode/timezone.h" |
| 28 #include "views/controls/button/checkbox.h" | 28 #include "views/controls/button/checkbox.h" |
| 29 #include "views/controls/button/native_button.h" | 29 #include "views/controls/button/native_button.h" |
| 30 #include "views/controls/combobox/combobox.h" | 30 #include "views/controls/combobox/combobox.h" |
| 31 #include "views/controls/slider/slider.h" | 31 #include "views/controls/slider/slider.h" |
| 32 #include "views/window/window.h" | 32 #include "views/window/window.h" |
| 33 | 33 |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); | 675 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); |
| 676 layout->StartRow(0, single_column_view_set_id); | 676 layout->StartRow(0, single_column_view_set_id); |
| 677 layout->AddView(new LanguageSection(profile())); | 677 layout->AddView(new LanguageSection(profile())); |
| 678 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); | 678 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); |
| 679 layout->StartRow(0, single_column_view_set_id); | 679 layout->StartRow(0, single_column_view_set_id); |
| 680 layout->AddView(new AccessibilitySection(profile())); | 680 layout->AddView(new AccessibilitySection(profile())); |
| 681 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); | 681 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); |
| 682 } | 682 } |
| 683 | 683 |
| 684 } // namespace chromeos | 684 } // namespace chromeos |
| OLD | NEW |