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 | 4 |
5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "chrome/browser/pref_member.h" | 11 #include "chrome/browser/prefs/pref_member.h" |
12 #include "chrome/browser/shell_dialogs.h" | 12 #include "chrome/browser/shell_dialogs.h" |
13 #include "chrome/browser/views/options/options_page_view.h" | 13 #include "chrome/browser/views/options/options_page_view.h" |
14 #include "views/controls/combobox/combobox.h" | 14 #include "views/controls/combobox/combobox.h" |
15 #include "views/controls/button/button.h" | 15 #include "views/controls/button/button.h" |
16 #include "views/view.h" | 16 #include "views/view.h" |
17 | 17 |
18 namespace views { | 18 namespace views { |
19 class GroupboxView; | 19 class GroupboxView; |
20 class Label; | 20 class Label; |
21 class NativeButton; | 21 class NativeButton; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 scoped_ptr<DefaultEncodingComboboxModel> default_encoding_combobox_model_; | 121 scoped_ptr<DefaultEncodingComboboxModel> default_encoding_combobox_model_; |
122 views::Label* default_encoding_combobox_label_; | 122 views::Label* default_encoding_combobox_label_; |
123 views::Combobox* default_encoding_combobox_; | 123 views::Combobox* default_encoding_combobox_; |
124 std::string default_encoding_selected_; | 124 std::string default_encoding_selected_; |
125 bool default_encoding_changed_; | 125 bool default_encoding_changed_; |
126 | 126 |
127 DISALLOW_COPY_AND_ASSIGN(FontsPageView); | 127 DISALLOW_COPY_AND_ASSIGN(FontsPageView); |
128 }; | 128 }; |
129 | 129 |
130 #endif // CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H_ | 130 #endif // CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H_ |
OLD | NEW |