| 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_ASH_APP_SYNC_UI_STATE_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_APP_SYNC_UI_STATE_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_APP_SYNC_UI_STATE_H_ | 6 #define CHROME_BROWSER_UI_ASH_APP_SYNC_UI_STATE_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| 11 #include "base/timer/timer.h" | 11 #include "base/timer/timer.h" |
| 12 #include "components/keyed_service/core/keyed_service.h" | 12 #include "components/keyed_service/core/keyed_service.h" |
| 13 #include "components/sync_driver/sync_service_observer.h" | 13 #include "components/sync/driver/sync_service_observer.h" |
| 14 #include "content/public/browser/notification_observer.h" | 14 #include "content/public/browser/notification_observer.h" |
| 15 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
| 16 #include "extensions/browser/extension_registry_observer.h" | 16 #include "extensions/browser/extension_registry_observer.h" |
| 17 | 17 |
| 18 class AppSyncUIStateObserver; | 18 class AppSyncUIStateObserver; |
| 19 class Profile; | 19 class Profile; |
| 20 class ProfileSyncService; | 20 class ProfileSyncService; |
| 21 | 21 |
| 22 namespace extensions { | 22 namespace extensions { |
| 23 class ExtensionRegistry; | 23 class ExtensionRegistry; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 Status status_; | 83 Status status_; |
| 84 base::ObserverList<AppSyncUIStateObserver> observers_; | 84 base::ObserverList<AppSyncUIStateObserver> observers_; |
| 85 | 85 |
| 86 extensions::ExtensionRegistry* extension_registry_; | 86 extensions::ExtensionRegistry* extension_registry_; |
| 87 | 87 |
| 88 DISALLOW_COPY_AND_ASSIGN(AppSyncUIState); | 88 DISALLOW_COPY_AND_ASSIGN(AppSyncUIState); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 #endif // CHROME_BROWSER_UI_ASH_APP_SYNC_UI_STATE_H_ | 91 #endif // CHROME_BROWSER_UI_ASH_APP_SYNC_UI_STATE_H_ |
| OLD | NEW |