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 #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/sync/profile_sync_service.h" | 8 #include "chrome/browser/sync/profile_sync_service.h" |
9 #include "chrome/browser/views/options/options_page_view.h" | 9 #include "chrome/browser/views/options/options_page_view.h" |
10 #include "chrome/common/pref_member.h" | 10 #include "chrome/common/pref_member.h" |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 #ifdef CHROME_PERSONALIZATION | 102 #ifdef CHROME_PERSONALIZATION |
103 // Controls for the Sync group. | 103 // Controls for the Sync group. |
104 OptionsGroupView* sync_group_; | 104 OptionsGroupView* sync_group_; |
105 views::Label* sync_status_label_; | 105 views::Label* sync_status_label_; |
106 views::Link* sync_action_link_; | 106 views::Link* sync_action_link_; |
107 views::NativeButton* sync_start_stop_button_; | 107 views::NativeButton* sync_start_stop_button_; |
108 #endif | 108 #endif |
109 | 109 |
110 BooleanPrefMember ask_to_save_passwords_; | 110 BooleanPrefMember ask_to_save_passwords_; |
111 BooleanPrefMember ask_to_save_form_autofill_; | 111 BooleanPrefMember ask_to_save_form_autofill_; |
| 112 StringPrefMember is_using_default_theme_; |
112 | 113 |
113 #ifdef CHROME_PERSONALIZATION | 114 #ifdef CHROME_PERSONALIZATION |
114 // Cached pointer to ProfileSyncService, if it exists. Kept up to date | 115 // Cached pointer to ProfileSyncService, if it exists. Kept up to date |
115 // and NULL-ed out on destruction. | 116 // and NULL-ed out on destruction. |
116 ProfileSyncService* sync_service_; | 117 ProfileSyncService* sync_service_; |
117 #endif | 118 #endif |
118 | 119 |
119 DISALLOW_COPY_AND_ASSIGN(ContentPageView); | 120 DISALLOW_COPY_AND_ASSIGN(ContentPageView); |
120 }; | 121 }; |
121 | 122 |
122 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H_ | 123 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H_ |
OLD | NEW |