Chromium Code Reviews

Unified Diff: chrome/browser/ui/app_list/app_list_syncable_service.h

Issue 1413153007: arc-app-launcher: Minimal support for ARC app launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/ui/app_list/app_list_syncable_service.h
diff --git a/chrome/browser/ui/app_list/app_list_syncable_service.h b/chrome/browser/ui/app_list/app_list_syncable_service.h
index 340761605e6ca607f950444d09db2e632845a0e3..63887ba44c6562c9d948c8699eb8e9e39fd7d7e7 100644
--- a/chrome/browser/ui/app_list/app_list_syncable_service.h
+++ b/chrome/browser/ui/app_list/app_list_syncable_service.h
@@ -18,6 +18,7 @@
#include "sync/api/syncable_service.h"
#include "sync/protocol/app_list_specifics.pb.h"
+class ArcAppModelBuilder;
class DriveAppProvider;
class ExtensionAppModelBuilder;
class Profile;
@@ -200,6 +201,7 @@ class AppListSyncableService : public syncer::SyncableService,
scoped_ptr<ModelObserver> model_observer_;
scoped_ptr<ModelPrefUpdater> model_pref_updater_;
scoped_ptr<ExtensionAppModelBuilder> apps_builder_;
+ scoped_ptr<ArcAppModelBuilder> arc_apps_builder_;
scoped_ptr<syncer::SyncChangeProcessor> sync_processor_;
scoped_ptr<syncer::SyncErrorFactory> sync_error_handler_;
SyncItemMap sync_items_;

Powered by Google App Engine