| 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_EXTENSIONS_CHROME_APP_SORTING_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_CHROME_APP_SORTING_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_CHROME_APP_SORTING_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_CHROME_APP_SORTING_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "chrome/browser/extensions/extension_prefs.h" | |
| 14 #include "extensions/browser/app_sorting.h" | 13 #include "extensions/browser/app_sorting.h" |
| 14 #include "extensions/browser/extension_prefs.h" |
| 15 #include "extensions/common/extension.h" | 15 #include "extensions/common/extension.h" |
| 16 #include "sync/api/string_ordinal.h" | 16 #include "sync/api/string_ordinal.h" |
| 17 | 17 |
| 18 class ExtensionSyncService; | 18 class ExtensionSyncService; |
| 19 class PrefService; | 19 class PrefService; |
| 20 | 20 |
| 21 namespace extensions { | 21 namespace extensions { |
| 22 | 22 |
| 23 class ExtensionScopedPrefs; | 23 class ExtensionScopedPrefs; |
| 24 | 24 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 // The set of extensions that don't appear in the new tab page. | 178 // The set of extensions that don't appear in the new tab page. |
| 179 std::set<std::string> ntp_hidden_extensions_; | 179 std::set<std::string> ntp_hidden_extensions_; |
| 180 | 180 |
| 181 DISALLOW_COPY_AND_ASSIGN(ChromeAppSorting); | 181 DISALLOW_COPY_AND_ASSIGN(ChromeAppSorting); |
| 182 }; | 182 }; |
| 183 | 183 |
| 184 } // namespace extensions | 184 } // namespace extensions |
| 185 | 185 |
| 186 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_APP_SORTING_H_ | 186 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_APP_SORTING_H_ |
| OLD | NEW |