| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_APP_LIST_APP_LIST_SYNCABLE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_SYNCABLE_SERVICE_H_ |
| 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_SYNCABLE_SERVICE_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_SYNCABLE_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 16 #include "chrome/browser/apps/drive/drive_app_uninstall_sync_service.h" | 16 #include "chrome/browser/apps/drive/drive_app_uninstall_sync_service.h" |
| 17 #include "chrome/browser/sync/glue/sync_start_util.h" | 17 #include "chrome/browser/sync/glue/sync_start_util.h" |
| 18 #include "components/keyed_service/core/keyed_service.h" | 18 #include "components/keyed_service/core/keyed_service.h" |
| 19 #include "sync/api/string_ordinal.h" | 19 #include "components/sync/api/string_ordinal.h" |
| 20 #include "sync/api/sync_change.h" | 20 #include "components/sync/api/sync_change.h" |
| 21 #include "sync/api/sync_change_processor.h" | 21 #include "components/sync/api/sync_change_processor.h" |
| 22 #include "sync/api/sync_error_factory.h" | 22 #include "components/sync/api/sync_error_factory.h" |
| 23 #include "sync/api/syncable_service.h" | 23 #include "components/sync/api/syncable_service.h" |
| 24 #include "sync/protocol/app_list_specifics.pb.h" | 24 #include "components/sync/protocol/app_list_specifics.pb.h" |
| 25 | 25 |
| 26 #if defined(OS_CHROMEOS) | 26 #if defined(OS_CHROMEOS) |
| 27 class ArcAppModelBuilder; | 27 class ArcAppModelBuilder; |
| 28 #endif | 28 #endif |
| 29 | 29 |
| 30 class DriveAppProvider; | 30 class DriveAppProvider; |
| 31 class ExtensionAppModelBuilder; | 31 class ExtensionAppModelBuilder; |
| 32 class Profile; | 32 class Profile; |
| 33 | 33 |
| 34 namespace extensions { | 34 namespace extensions { |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 | 255 |
| 256 // Provides integration with Drive apps. | 256 // Provides integration with Drive apps. |
| 257 std::unique_ptr<DriveAppProvider> drive_app_provider_; | 257 std::unique_ptr<DriveAppProvider> drive_app_provider_; |
| 258 | 258 |
| 259 DISALLOW_COPY_AND_ASSIGN(AppListSyncableService); | 259 DISALLOW_COPY_AND_ASSIGN(AppListSyncableService); |
| 260 }; | 260 }; |
| 261 | 261 |
| 262 } // namespace app_list | 262 } // namespace app_list |
| 263 | 263 |
| 264 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_SYNCABLE_SERVICE_H_ | 264 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_SYNCABLE_SERVICE_H_ |
| OLD | NEW |