| 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/prefs/pref_member.h" |
| 11 #include "chrome/browser/sync/profile_sync_service.h" | 11 #include "chrome/browser/sync/profile_sync_service.h" |
| 12 #include "chrome/browser/views/options/options_page_view.h" | 12 #include "chrome/browser/views/options/options_page_view.h" |
| 13 #include "chrome/browser/views/confirm_message_box_dialog.h" | 13 #include "chrome/browser/views/confirm_message_box_dialog.h" |
| 14 #include "views/controls/button/button.h" | 14 #include "views/controls/button/button.h" |
| 15 #include "views/controls/link.h" | 15 #include "views/controls/link.h" |
| 16 #include "views/view.h" | 16 #include "views/view.h" |
| 17 | 17 |
| 18 namespace views { | 18 namespace views { |
| 19 class Checkbox; | 19 class Checkbox; |
| 20 class Label; | 20 class Label; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 StringPrefMember is_using_default_theme_; | 108 StringPrefMember is_using_default_theme_; |
| 109 | 109 |
| 110 // Cached pointer to ProfileSyncService, if it exists. Kept up to date | 110 // Cached pointer to ProfileSyncService, if it exists. Kept up to date |
| 111 // and NULL-ed out on destruction. | 111 // and NULL-ed out on destruction. |
| 112 ProfileSyncService* sync_service_; | 112 ProfileSyncService* sync_service_; |
| 113 | 113 |
| 114 DISALLOW_COPY_AND_ASSIGN(ContentPageView); | 114 DISALLOW_COPY_AND_ASSIGN(ContentPageView); |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H_ | 117 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_PAGE_VIEW_H_ |
| OLD | NEW |