| 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/combobox_model.h" |
| 10 #include "app/l10n_util.h" | 11 #include "app/l10n_util.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/stringprintf.h" | 15 #include "base/stringprintf.h" |
| 16 #include "base/utf_string_conversions.h" | 16 #include "base/utf_string_conversions.h" |
| 17 #include "chrome/browser/chromeos/cros/cros_library.h" | 17 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 18 #include "chrome/browser/chromeos/cros/keyboard_library.h" | 18 #include "chrome/browser/chromeos/cros/keyboard_library.h" |
| 19 #include "chrome/browser/chromeos/cros/system_library.h" | 19 #include "chrome/browser/chromeos/cros/system_library.h" |
| 20 #include "chrome/browser/chromeos/language_preferences.h" | 20 #include "chrome/browser/chromeos/language_preferences.h" |
| 21 #include "chrome/browser/chromeos/options/language_config_util.h" | 21 #include "chrome/browser/chromeos/options/language_config_util.h" |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); | 527 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); |
| 528 layout->StartRow(0, single_column_view_set_id); | 528 layout->StartRow(0, single_column_view_set_id); |
| 529 layout->AddView(new LanguageSection(profile())); | 529 layout->AddView(new LanguageSection(profile())); |
| 530 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); | 530 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); |
| 531 layout->StartRow(0, single_column_view_set_id); | 531 layout->StartRow(0, single_column_view_set_id); |
| 532 layout->AddView(new AccessibilitySection(profile())); | 532 layout->AddView(new AccessibilitySection(profile())); |
| 533 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); | 533 layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); |
| 534 } | 534 } |
| 535 | 535 |
| 536 } // namespace chromeos | 536 } // namespace chromeos |
| OLD | NEW |