| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/scoped_observer.h" | 12 #include "base/scoped_observer.h" |
| 13 #include "chrome/browser/sync/profile_sync_service.h" | |
| 14 #include "chrome/browser/ui/webui/options/options_ui.h" | 13 #include "chrome/browser/ui/webui/options/options_ui.h" |
| 15 #include "components/autofill/core/browser/personal_data_manager_observer.h" | 14 #include "components/autofill/core/browser/personal_data_manager_observer.h" |
| 15 #include "components/browser_sync/browser/profile_sync_service.h" |
| 16 #include "components/sync_driver/sync_service_observer.h" | 16 #include "components/sync_driver/sync_service_observer.h" |
| 17 | 17 |
| 18 namespace autofill { | 18 namespace autofill { |
| 19 class AutofillProfile; | 19 class AutofillProfile; |
| 20 class PersonalDataManager; | 20 class PersonalDataManager; |
| 21 } // namespace autofill | 21 } // namespace autofill |
| 22 | 22 |
| 23 namespace base { | 23 namespace base { |
| 24 class DictionaryValue; | 24 class DictionaryValue; |
| 25 class ListValue; | 25 class ListValue; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 113 |
| 114 ScopedObserver<ProfileSyncService, sync_driver::SyncServiceObserver> | 114 ScopedObserver<ProfileSyncService, sync_driver::SyncServiceObserver> |
| 115 observer_; | 115 observer_; |
| 116 | 116 |
| 117 DISALLOW_COPY_AND_ASSIGN(AutofillOptionsHandler); | 117 DISALLOW_COPY_AND_ASSIGN(AutofillOptionsHandler); |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 } // namespace options | 120 } // namespace options |
| 121 | 121 |
| 122 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ | 122 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ |
| OLD | NEW |