| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_SETTINGS_PEOPLE_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_SETTINGS_PEOPLE_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_PEOPLE_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_PEOPLE_HANDLER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "components/sync/driver/sync_service_observer.h" | 22 #include "components/sync/driver/sync_service_observer.h" |
| 23 | 23 |
| 24 class LoginUIService; | 24 class LoginUIService; |
| 25 class SigninManagerBase; | 25 class SigninManagerBase; |
| 26 | 26 |
| 27 namespace browser_sync { | 27 namespace browser_sync { |
| 28 class ProfileSyncService; | 28 class ProfileSyncService; |
| 29 } // namespace browser_sync | 29 } // namespace browser_sync |
| 30 | 30 |
| 31 namespace content { | 31 namespace content { |
| 32 class WebContents; | |
| 33 class WebUI; | 32 class WebUI; |
| 34 } // namespace content | 33 } // namespace content |
| 35 | 34 |
| 36 namespace signin_metrics { | 35 namespace signin_metrics { |
| 37 enum class AccessPoint; | 36 enum class AccessPoint; |
| 38 } // namespace signin_metrics | 37 } // namespace signin_metrics |
| 39 | 38 |
| 40 namespace syncer { | 39 namespace syncer { |
| 41 class SyncSetupInProgressHandle; | 40 class SyncSetupInProgressHandle; |
| 42 } // namespace syncer | 41 } // namespace syncer |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 ScopedObserver<SigninManagerBase, PeopleHandler> signin_observer_; | 200 ScopedObserver<SigninManagerBase, PeopleHandler> signin_observer_; |
| 202 ScopedObserver<browser_sync::ProfileSyncService, PeopleHandler> | 201 ScopedObserver<browser_sync::ProfileSyncService, PeopleHandler> |
| 203 sync_service_observer_; | 202 sync_service_observer_; |
| 204 | 203 |
| 205 DISALLOW_COPY_AND_ASSIGN(PeopleHandler); | 204 DISALLOW_COPY_AND_ASSIGN(PeopleHandler); |
| 206 }; | 205 }; |
| 207 | 206 |
| 208 } // namespace settings | 207 } // namespace settings |
| 209 | 208 |
| 210 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_PEOPLE_HANDLER_H_ | 209 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_PEOPLE_HANDLER_H_ |
| OLD | NEW |