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

Side by Side Diff: extensions/browser/app_sorting.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
« no previous file with comments | « extensions/BUILD.gn ('k') | extensions/browser/extension_prefs.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 EXTENSIONS_BROWSER_APP_SORTING_H_ 5 #ifndef EXTENSIONS_BROWSER_APP_SORTING_H_
6 #define EXTENSIONS_BROWSER_APP_SORTING_H_ 6 #define EXTENSIONS_BROWSER_APP_SORTING_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "components/sync/api/string_ordinal.h" 13 #include "components/sync/model/string_ordinal.h"
14 #include "extensions/common/extension.h" 14 #include "extensions/common/extension.h"
15 15
16 namespace extensions { 16 namespace extensions {
17 17
18 class ExtensionScopedPrefs; 18 class ExtensionScopedPrefs;
19 19
20 // An interface that provides a fixed ordering for a set of apps. 20 // An interface that provides a fixed ordering for a set of apps.
21 class AppSorting { 21 class AppSorting {
22 public: 22 public:
23 AppSorting() {} 23 AppSorting() {}
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 virtual void SetExtensionVisible(const std::string& extension_id, 111 virtual void SetExtensionVisible(const std::string& extension_id,
112 bool visible) = 0; 112 bool visible) = 0;
113 113
114 private: 114 private:
115 DISALLOW_COPY_AND_ASSIGN(AppSorting); 115 DISALLOW_COPY_AND_ASSIGN(AppSorting);
116 }; 116 };
117 117
118 } // namespace extensions 118 } // namespace extensions
119 119
120 #endif // EXTENSIONS_BROWSER_APP_SORTING_H_ 120 #endif // EXTENSIONS_BROWSER_APP_SORTING_H_
OLDNEW
« no previous file with comments | « extensions/BUILD.gn ('k') | extensions/browser/extension_prefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698