| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/common/extensions/api/extension_action/action_info.h" | 5 #include "chrome/common/extensions/api/extension_action/action_info.h" |
| 6 #include "chrome/common/extensions/extension_constants.h" | 6 #include "chrome/common/extensions/extension_constants.h" |
| 7 #include "chrome/common/extensions/extension_icon_set.h" | 7 #include "chrome/common/extensions/extension_icon_set.h" |
| 8 #include "chrome/common/extensions/feature_switch.h" | |
| 9 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" | 8 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" |
| 10 #include "extensions/common/extension_builder.h" | 9 #include "extensions/common/extension_builder.h" |
| 10 #include "extensions/common/feature_switch.h" |
| 11 #include "extensions/common/install_warning.h" | 11 #include "extensions/common/install_warning.h" |
| 12 #include "extensions/common/manifest_constants.h" | 12 #include "extensions/common/manifest_constants.h" |
| 13 #include "extensions/common/manifest_constants.h" | 13 #include "extensions/common/manifest_constants.h" |
| 14 #include "testing/gmock/include/gmock/gmock.h" | 14 #include "testing/gmock/include/gmock/gmock.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 namespace extensions { | 17 namespace extensions { |
| 18 | 18 |
| 19 namespace errors = manifest_errors; | 19 namespace errors = manifest_errors; |
| 20 | 20 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 EXPECT_EQ(2u, default_icon.map().size()); | 141 EXPECT_EQ(2u, default_icon.map().size()); |
| 142 EXPECT_EQ("icon128.png", | 142 EXPECT_EQ("icon128.png", |
| 143 default_icon.Get(extension_misc::EXTENSION_ICON_BITTY, | 143 default_icon.Get(extension_misc::EXTENSION_ICON_BITTY, |
| 144 ExtensionIconSet::MATCH_EXACTLY)); | 144 ExtensionIconSet::MATCH_EXACTLY)); |
| 145 EXPECT_EQ("icon128.png", | 145 EXPECT_EQ("icon128.png", |
| 146 default_icon.Get(2 * extension_misc::EXTENSION_ICON_BITTY, | 146 default_icon.Get(2 * extension_misc::EXTENSION_ICON_BITTY, |
| 147 ExtensionIconSet::MATCH_EXACTLY)); | 147 ExtensionIconSet::MATCH_EXACTLY)); |
| 148 } | 148 } |
| 149 | 149 |
| 150 } // namespace extensions | 150 } // namespace extensions |
| OLD | NEW |