Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: chrome/browser/ui/app_list/arc/arc_package_syncable_service.h

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_ARC_ARC_PACKAGE_SYNCABLE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_UI_APP_LIST_ARC_ARC_PACKAGE_SYNCABLE_SERVICE_H_
6 #define CHROME_BROWSER_UI_APP_LIST_ARC_ARC_PACKAGE_SYNCABLE_SERVICE_H_ 6 #define CHROME_BROWSER_UI_APP_LIST_ARC_ARC_PACKAGE_SYNCABLE_SERVICE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <string> 11 #include <string>
12 #include <unordered_map> 12 #include <unordered_map>
13 13
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "chrome/browser/sync/glue/sync_start_util.h" 15 #include "chrome/browser/sync/glue/sync_start_util.h"
16 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" 16 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h"
17 #include "components/keyed_service/core/keyed_service.h" 17 #include "components/keyed_service/core/keyed_service.h"
18 #include "components/sync/api/sync_change.h" 18 #include "components/sync/model/sync_change.h"
19 #include "components/sync/api/sync_change_processor.h" 19 #include "components/sync/model/sync_change_processor.h"
20 #include "components/sync/api/sync_error_factory.h" 20 #include "components/sync/model/sync_error_factory.h"
21 #include "components/sync/api/syncable_service.h" 21 #include "components/sync/model/syncable_service.h"
22 #include "components/sync/protocol/arc_package_specifics.pb.h" 22 #include "components/sync/protocol/arc_package_specifics.pb.h"
23 23
24 class Profile; 24 class Profile;
25 25
26 namespace content { 26 namespace content {
27 class BrowserContext; 27 class BrowserContext;
28 } // namespace content 28 } // namespace content
29 29
30 namespace arc { 30 namespace arc {
31 31
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 syncer::SyncableService::StartSyncFlare flare_; 129 syncer::SyncableService::StartSyncFlare flare_;
130 130
131 ArcAppListPrefs* const prefs_; 131 ArcAppListPrefs* const prefs_;
132 132
133 DISALLOW_COPY_AND_ASSIGN(ArcPackageSyncableService); 133 DISALLOW_COPY_AND_ASSIGN(ArcPackageSyncableService);
134 }; 134 };
135 135
136 } // namespace arc 136 } // namespace arc
137 137
138 #endif // CHROME_BROWSER_UI_APP_LIST_ARC_ARC_PACKAGE_SYNCABLE_SERVICE_H_ 138 #endif // CHROME_BROWSER_UI_APP_LIST_ARC_ARC_PACKAGE_SYNCABLE_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698