| 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_CONTENT_PAGE_VIEW_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H__ |
| 6 #define CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H__ | 6 #define CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H__ |
| 7 | 7 |
| 8 #include "chrome/browser/views/options/options_page_view.h" | 8 #include "chrome/browser/views/options/options_page_view.h" |
| 9 #include "chrome/browser/shell_dialogs.h" | 9 #include "chrome/browser/shell_dialogs.h" |
| 10 #include "chrome/common/pref_member.h" | 10 #include "chrome/common/pref_member.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 FileDisplayArea* download_default_download_location_display_; | 63 FileDisplayArea* download_default_download_location_display_; |
| 64 views::NativeButton* download_browse_button_; | 64 views::NativeButton* download_browse_button_; |
| 65 views::Checkbox* download_ask_for_save_location_checkbox_; | 65 views::Checkbox* download_ask_for_save_location_checkbox_; |
| 66 scoped_refptr<SelectFileDialog> select_file_dialog_; | 66 scoped_refptr<SelectFileDialog> select_file_dialog_; |
| 67 | 67 |
| 68 // Controls for the Password Saving group | 68 // Controls for the Password Saving group |
| 69 views::NativeButton* passwords_exceptions_button_; | 69 views::NativeButton* passwords_exceptions_button_; |
| 70 OptionsGroupView* passwords_group_; | 70 OptionsGroupView* passwords_group_; |
| 71 views::RadioButton* passwords_asktosave_radio_; | 71 views::RadioButton* passwords_asktosave_radio_; |
| 72 views::RadioButton* passwords_neversave_radio_; | 72 views::RadioButton* passwords_neversave_radio_; |
| 73 views::NativeButton* passwords_show_passwords_button_; | |
| 74 | 73 |
| 75 // Controls for the Form Autofill group | 74 // Controls for the Form Autofill group |
| 76 OptionsGroupView* form_autofill_group_; | 75 OptionsGroupView* form_autofill_group_; |
| 77 views::Checkbox* form_autofill_checkbox_; | 76 views::Checkbox* form_autofill_checkbox_; |
| 78 | 77 |
| 79 // Controls for the Popup Blocking group. | 78 // Controls for the Popup Blocking group. |
| 80 OptionsGroupView* popups_group_; | 79 OptionsGroupView* popups_group_; |
| 81 views::RadioButton* popups_show_minimized_radio_; | 80 views::RadioButton* popups_show_minimized_radio_; |
| 82 views::RadioButton* popups_block_all_radio_; | 81 views::RadioButton* popups_block_all_radio_; |
| 83 | 82 |
| 84 // Controls for the Fonts and Languages group. | 83 // Controls for the Fonts and Languages group. |
| 85 OptionsGroupView* fonts_lang_group_; | 84 OptionsGroupView* fonts_lang_group_; |
| 86 views::Label* fonts_and_languages_label_; | 85 views::Label* fonts_and_languages_label_; |
| 87 views::NativeButton* change_content_fonts_button_; | 86 views::NativeButton* change_content_fonts_button_; |
| 88 | 87 |
| 89 StringPrefMember default_download_location_; | 88 StringPrefMember default_download_location_; |
| 90 BooleanPrefMember ask_for_save_location_; | 89 BooleanPrefMember ask_for_save_location_; |
| 91 BooleanPrefMember ask_to_save_passwords_; | 90 BooleanPrefMember ask_to_save_passwords_; |
| 92 BooleanPrefMember form_autofill_; | 91 BooleanPrefMember form_autofill_; |
| 93 | 92 |
| 94 DISALLOW_EVIL_CONSTRUCTORS(ContentPageView); | 93 DISALLOW_EVIL_CONSTRUCTORS(ContentPageView); |
| 95 }; | 94 }; |
| 96 | 95 |
| 97 #endif // #ifndef CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H__ | 96 #endif // #ifndef CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H__ |
| OLD | NEW |