| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "fr", // French | 81 "fr", // French |
| 82 "fr-CA", // French (Canada) | 82 "fr-CA", // French (Canada) |
| 83 "fr-CH", // French (Switzerland) | 83 "fr-CH", // French (Switzerland) |
| 84 "fr-FR", // French (France) | 84 "fr-FR", // French (France) |
| 85 "fy", // Frisian | 85 "fy", // Frisian |
| 86 "ga", // Irish | 86 "ga", // Irish |
| 87 "gd", // Scots Gaelic | 87 "gd", // Scots Gaelic |
| 88 "gl", // Galician | 88 "gl", // Galician |
| 89 "gn", // Guarani | 89 "gn", // Guarani |
| 90 "gu", // Gujarati | 90 "gu", // Gujarati |
| 91 "haw", // Hawaiian |
| 91 "he", // Hebrew | 92 "he", // Hebrew |
| 92 "hi", // Hindi | 93 "hi", // Hindi |
| 93 "hr", // Croatian | 94 "hr", // Croatian |
| 94 "hu", // Hungarian | 95 "hu", // Hungarian |
| 95 "hy", // Armenian | 96 "hy", // Armenian |
| 96 "ia", // Interlingua | 97 "ia", // Interlingua |
| 97 "id", // Indonesian | 98 "id", // Indonesian |
| 98 "is", // Icelandic | 99 "is", // Icelandic |
| 99 "it", // Italian | 100 "it", // Italian |
| 100 "it-CH", // Italian (Switzerland) | 101 "it-CH", // Italian (Switzerland) |
| (...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 } | 874 } |
| 874 | 875 |
| 875 if (enable_spellcheck_checkbox_clicked_) | 876 if (enable_spellcheck_checkbox_clicked_) |
| 876 enable_spellcheck_.SetValue(enable_spellchecking_checkbox_->checked()); | 877 enable_spellcheck_.SetValue(enable_spellchecking_checkbox_->checked()); |
| 877 | 878 |
| 878 if (enable_autospellcorrect_checkbox_clicked_) { | 879 if (enable_autospellcorrect_checkbox_clicked_) { |
| 879 enable_autospellcorrect_.SetValue( | 880 enable_autospellcorrect_.SetValue( |
| 880 enable_autospellcorrect_checkbox_->checked()); | 881 enable_autospellcorrect_checkbox_->checked()); |
| 881 } | 882 } |
| 882 } | 883 } |
| OLD | NEW |