| 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 #include "chrome/browser/extensions/chrome_app_sorting.h" | 5 #include "chrome/browser/extensions/chrome_app_sorting.h" |
| 6 | 6 |
| 7 #include "chrome/browser/extensions/extension_prefs_unittest.h" | 7 #include "chrome/browser/extensions/extension_prefs_unittest.h" |
| 8 #include "components/crx_file/id_util.h" | 8 #include "components/crx_file/id_util.h" |
| 9 #include "components/sync/api/string_ordinal.h" | 9 #include "components/sync/model/string_ordinal.h" |
| 10 #include "extensions/common/constants.h" | 10 #include "extensions/common/constants.h" |
| 11 #include "extensions/common/manifest_constants.h" | 11 #include "extensions/common/manifest_constants.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 namespace extensions { | 14 namespace extensions { |
| 15 | 15 |
| 16 namespace keys = manifest_keys; | 16 namespace keys = manifest_keys; |
| 17 | 17 |
| 18 class ChromeAppSortingAppLocation : public ExtensionPrefsTest { | 18 class ChromeAppSortingAppLocation : public ExtensionPrefsTest { |
| 19 public: | 19 public: |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 | 936 |
| 937 private: | 937 private: |
| 938 scoped_refptr<Extension> first_app_; | 938 scoped_refptr<Extension> first_app_; |
| 939 scoped_refptr<Extension> second_app_; | 939 scoped_refptr<Extension> second_app_; |
| 940 }; | 940 }; |
| 941 TEST_F(ChromeAppSortingSetExtensionVisible, | 941 TEST_F(ChromeAppSortingSetExtensionVisible, |
| 942 ChromeAppSortingSetExtensionVisible) { | 942 ChromeAppSortingSetExtensionVisible) { |
| 943 } | 943 } |
| 944 | 944 |
| 945 } // namespace extensions | 945 } // namespace extensions |
| OLD | NEW |