| 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 <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "chrome/browser/extensions/extension_prefs_unittest.h" | 9 #include "chrome/browser/extensions/./extension_prefs_unittest.h" |
| 10 #include "chrome/common/extensions/extension_constants.h" | 10 #include "chrome/common/extensions/extension_constants.h" |
| 11 #include "extensions/common/manifest_constants.h" | 11 #include "extensions/common/manifest_constants.h" |
| 12 #include "sync/api/string_ordinal.h" | 12 #include "sync/api/string_ordinal.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 |
| 15 namespace extensions { | 15 namespace extensions { |
| 16 | 16 |
| 17 namespace keys = manifest_keys; | 17 namespace keys = manifest_keys; |
| 18 | 18 |
| 19 class ChromeAppSortingTest : public ExtensionPrefsTest { | 19 class ChromeAppSortingTest : public ExtensionPrefsTest { |
| (...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 } | 953 } |
| 954 | 954 |
| 955 private: | 955 private: |
| 956 scoped_refptr<Extension> other_app_; | 956 scoped_refptr<Extension> other_app_; |
| 957 scoped_refptr<Extension> yet_another_app_; | 957 scoped_refptr<Extension> yet_another_app_; |
| 958 }; | 958 }; |
| 959 TEST_F(ChromeAppSortingDefaultOrdinalNoCollision, | 959 TEST_F(ChromeAppSortingDefaultOrdinalNoCollision, |
| 960 ChromeAppSortingDefaultOrdinalNoCollision) {} | 960 ChromeAppSortingDefaultOrdinalNoCollision) {} |
| 961 | 961 |
| 962 } // namespace extensions | 962 } // namespace extensions |
| OLD | NEW |