OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #include <windows.h> | 4 #include <windows.h> |
5 #include <shlobj.h> | 5 #include <shlobj.h> |
6 #include <vsstyle.h> | 6 #include <vsstyle.h> |
7 #include <vssym32.h> | 7 #include <vssym32.h> |
8 | 8 |
9 #include "chrome/browser/views/options/languages_page_view.h" | 9 #include "chrome/browser/views/options/languages_page_view.h" |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 #include "chrome/browser/views/restart_message_box.h" | 26 #include "chrome/browser/views/restart_message_box.h" |
27 #include "chrome/common/chrome_switches.h" | 27 #include "chrome/common/chrome_switches.h" |
28 #include "chrome/common/pref_names.h" | 28 #include "chrome/common/pref_names.h" |
29 #include "chrome/common/pref_service.h" | 29 #include "chrome/common/pref_service.h" |
30 #include "grit/chromium_strings.h" | 30 #include "grit/chromium_strings.h" |
31 #include "grit/generated_resources.h" | 31 #include "grit/generated_resources.h" |
32 #include "grit/theme_resources.h" | 32 #include "grit/theme_resources.h" |
33 #include "third_party/skia/include/core/SkBitmap.h" | 33 #include "third_party/skia/include/core/SkBitmap.h" |
34 #include "unicode/uloc.h" | 34 #include "unicode/uloc.h" |
35 #include "views/controls/button/radio_button.h" | 35 #include "views/controls/button/radio_button.h" |
36 #include "views/controls/tabbed_pane.h" | 36 #include "views/controls/tabbed_pane/tabbed_pane.h" |
37 #include "views/controls/table/table_view.h" | 37 #include "views/controls/table/table_view.h" |
38 #include "views/grid_layout.h" | 38 #include "views/grid_layout.h" |
39 #include "views/standard_layout.h" | 39 #include "views/standard_layout.h" |
40 #include "views/widget/widget.h" | 40 #include "views/widget/widget.h" |
41 #include "views/window/window.h" | 41 #include "views/window/window.h" |
42 | 42 |
43 static const char* const accept_language_list[] = { | 43 static const char* const accept_language_list[] = { |
44 "af", // Afrikaans | 44 "af", // Afrikaans |
45 "am", // Amharic | 45 "am", // Amharic |
46 "ar", // Arabic | 46 "ar", // Arabic |
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
873 } | 873 } |
874 | 874 |
875 if (enable_spellcheck_checkbox_clicked_) | 875 if (enable_spellcheck_checkbox_clicked_) |
876 enable_spellcheck_.SetValue(enable_spellchecking_checkbox_->checked()); | 876 enable_spellcheck_.SetValue(enable_spellchecking_checkbox_->checked()); |
877 | 877 |
878 if (enable_autospellcorrect_checkbox_clicked_) { | 878 if (enable_autospellcorrect_checkbox_clicked_) { |
879 enable_autospellcorrect_.SetValue( | 879 enable_autospellcorrect_.SetValue( |
880 enable_autospellcorrect_checkbox_->checked()); | 880 enable_autospellcorrect_checkbox_->checked()); |
881 } | 881 } |
882 } | 882 } |
OLD | NEW |