summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/features/simple_feature.cc
diff options
context:
space:
mode:
authorkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-30 03:37:28 +0000
committerkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-30 03:37:28 +0000
commit4f4173f3dbefd7b11fe4cd050bd50050d5300103 (patch)
tree52f40a241577b86baf9e8dba7ce184184754b7fd /chrome/common/extensions/features/simple_feature.cc
parent4177df53e6c54a6256d0f28fa37ca029859719e3 (diff)
downloadchromium_src-4f4173f3dbefd7b11fe4cd050bd50050d5300103.zip
chromium_src-4f4173f3dbefd7b11fe4cd050bd50050d5300103.tar.gz
chromium_src-4f4173f3dbefd7b11fe4cd050bd50050d5300103.tar.bz2
Renamed packaged_app to legacy_packaged_app in extension feature files. It's
confusing otherwise since the C++ enum is called LEGACY_PACKAGED_APP. Review URL: https://chromiumcodereview.appspot.com/23691012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220498 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/features/simple_feature.cc')
-rw-r--r--chrome/common/extensions/features/simple_feature.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/features/simple_feature.cc b/chrome/common/extensions/features/simple_feature.cc
index e8ee3d5..81f50c9 100644
--- a/chrome/common/extensions/features/simple_feature.cc
+++ b/chrome/common/extensions/features/simple_feature.cc
@@ -26,7 +26,7 @@ struct Mappings {
Mappings() {
extension_types["extension"] = Manifest::TYPE_EXTENSION;
extension_types["theme"] = Manifest::TYPE_THEME;
- extension_types["packaged_app"] = Manifest::TYPE_LEGACY_PACKAGED_APP;
+ extension_types["legacy_packaged_app"] = Manifest::TYPE_LEGACY_PACKAGED_APP;
extension_types["hosted_app"] = Manifest::TYPE_HOSTED_APP;
extension_types["platform_app"] = Manifest::TYPE_PLATFORM_APP;
extension_types["shared_module"] = Manifest::TYPE_SHARED_MODULE;