| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // The fonts page of the fonts & languages options dialog, which contains font | 5 // The fonts page of the fonts & languages options dialog, which contains font |
| 6 // family and size settings, as well as the default encoding option. | 6 // family and size settings, as well as the default encoding option. |
| 7 | 7 |
| 8 #ifndef CHROME_BROWSER_GTK_OPTIONS_FONTS_PAGE_GTK_H_ | 8 #ifndef CHROME_BROWSER_GTK_OPTIONS_FONTS_PAGE_GTK_H_ |
| 9 #define CHROME_BROWSER_GTK_OPTIONS_FONTS_PAGE_GTK_H_ | 9 #define CHROME_BROWSER_GTK_OPTIONS_FONTS_PAGE_GTK_H_ |
| 10 | 10 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 IntegerPrefMember variable_width_size_; | 68 IntegerPrefMember variable_width_size_; |
| 69 IntegerPrefMember fixed_width_size_; | 69 IntegerPrefMember fixed_width_size_; |
| 70 | 70 |
| 71 // Default encoding preference. | 71 // Default encoding preference. |
| 72 StringPrefMember default_encoding_; | 72 StringPrefMember default_encoding_; |
| 73 std::vector<CharacterEncoding::EncodingInfo> sorted_encoding_list_; | 73 std::vector<CharacterEncoding::EncodingInfo> sorted_encoding_list_; |
| 74 | 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(FontsPageGtk); | 75 DISALLOW_COPY_AND_ASSIGN(FontsPageGtk); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 | 78 #endif // CHROME_BROWSER_GTK_OPTIONS_FONTS_PAGE_GTK_H_ |
| 79 #endif // #ifndef CHROME_BROWSER_GTK_OPTIONS_FONTS_PAGE_GTK_H_ | |
| OLD | NEW |