| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 void UpdateDownloadDirectoryDisplay(); | 58 void UpdateDownloadDirectoryDisplay(); |
| 59 | 59 |
| 60 // Controls for the Download Location group. | 60 // Controls for the Download Location group. |
| 61 OptionsGroupView* download_location_group_; | 61 OptionsGroupView* download_location_group_; |
| 62 FileDisplayArea* download_default_download_location_display_; | 62 FileDisplayArea* download_default_download_location_display_; |
| 63 views::NativeButton* download_browse_button_; | 63 views::NativeButton* download_browse_button_; |
| 64 views::CheckBox* download_ask_for_save_location_checkbox_; | 64 views::CheckBox* download_ask_for_save_location_checkbox_; |
| 65 scoped_refptr<SelectFileDialog> select_file_dialog_; | 65 scoped_refptr<SelectFileDialog> select_file_dialog_; |
| 66 | 66 |
| 67 // Controls for the Password Saving group | 67 // Controls for the Password Saving group |
| 68 views::NativeButton* passwords_exceptions_button_; |
| 68 OptionsGroupView* passwords_group_; | 69 OptionsGroupView* passwords_group_; |
| 69 views::RadioButton* passwords_asktosave_radio_; | 70 views::RadioButton* passwords_asktosave_radio_; |
| 70 views::RadioButton* passwords_neversave_radio_; | 71 views::RadioButton* passwords_neversave_radio_; |
| 71 views::NativeButton* passwords_show_passwords_button_; | 72 views::NativeButton* passwords_show_passwords_button_; |
| 72 | 73 |
| 73 // Controls for the Form Autofill group | 74 // Controls for the Form Autofill group |
| 74 OptionsGroupView* form_autofill_group_; | 75 OptionsGroupView* form_autofill_group_; |
| 75 views::CheckBox* form_autofill_checkbox_; | 76 views::CheckBox* form_autofill_checkbox_; |
| 76 | 77 |
| 77 // Controls for the Popup Blocking group. | 78 // Controls for the Popup Blocking group. |
| 78 OptionsGroupView* popups_group_; | 79 OptionsGroupView* popups_group_; |
| 79 views::RadioButton* popups_show_minimized_radio_; | 80 views::RadioButton* popups_show_minimized_radio_; |
| 80 views::RadioButton* popups_block_all_radio_; | 81 views::RadioButton* popups_block_all_radio_; |
| 81 | 82 |
| 82 // Controls for the Fonts and Languages group. | 83 // Controls for the Fonts and Languages group. |
| 83 OptionsGroupView* fonts_lang_group_; | 84 OptionsGroupView* fonts_lang_group_; |
| 84 views::Label* fonts_and_languages_label_; | 85 views::Label* fonts_and_languages_label_; |
| 85 views::NativeButton* change_content_fonts_button_; | 86 views::NativeButton* change_content_fonts_button_; |
| 86 | 87 |
| 87 StringPrefMember default_download_location_; | 88 StringPrefMember default_download_location_; |
| 88 BooleanPrefMember ask_for_save_location_; | 89 BooleanPrefMember ask_for_save_location_; |
| 89 BooleanPrefMember ask_to_save_passwords_; | 90 BooleanPrefMember ask_to_save_passwords_; |
| 90 BooleanPrefMember form_autofill_; | 91 BooleanPrefMember form_autofill_; |
| 91 | 92 |
| 92 DISALLOW_EVIL_CONSTRUCTORS(ContentPageView); | 93 DISALLOW_EVIL_CONSTRUCTORS(ContentPageView); |
| 93 }; | 94 }; |
| 94 | 95 |
| 95 #endif // #ifndef CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H__ | 96 #endif // #ifndef CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H__ |
| 96 | 97 |
| OLD | NEW |