OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/autofill/personal_data_manager.h" | 9 #include "chrome/browser/autofill/personal_data_manager.h" |
10 #include "chrome/browser/pref_member.h" | 10 #include "chrome/browser/pref_member.h" |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 | 97 |
98 // Controls for the Sync group. | 98 // Controls for the Sync group. |
99 OptionsGroupView* sync_group_; | 99 OptionsGroupView* sync_group_; |
100 views::Label* sync_status_label_; | 100 views::Label* sync_status_label_; |
101 views::Link* sync_action_link_; | 101 views::Link* sync_action_link_; |
102 views::NativeButton* sync_start_stop_button_; | 102 views::NativeButton* sync_start_stop_button_; |
103 views::NativeButton* sync_customize_button_; | 103 views::NativeButton* sync_customize_button_; |
104 views::Link* privacy_dashboard_link_; | 104 views::Link* privacy_dashboard_link_; |
105 | 105 |
106 BooleanPrefMember ask_to_save_passwords_; | 106 BooleanPrefMember ask_to_save_passwords_; |
| 107 BooleanPrefMember form_autofill_enabled_; |
107 StringPrefMember is_using_default_theme_; | 108 StringPrefMember is_using_default_theme_; |
108 | 109 |
109 // Cached pointer to ProfileSyncService, if it exists. Kept up to date | 110 // Cached pointer to ProfileSyncService, if it exists. Kept up to date |
110 // and NULL-ed out on destruction. | 111 // and NULL-ed out on destruction. |
111 ProfileSyncService* sync_service_; | 112 ProfileSyncService* sync_service_; |
112 | 113 |
113 DISALLOW_COPY_AND_ASSIGN(ContentPageView); | 114 DISALLOW_COPY_AND_ASSIGN(ContentPageView); |
114 }; | 115 }; |
115 | 116 |
116 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H_ | 117 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H_ |
OLD | NEW |