summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/extension_messages.cc
diff options
context:
space:
mode:
authormiket@chromium.org <miket@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 02:17:53 +0000
committermiket@chromium.org <miket@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 02:17:53 +0000
commit9776e82e6f0c0b011007b12dc5e14b31e30da62b (patch)
treef43f2a119f2d3fcb14fe5b890440900b375123a7 /chrome/common/extensions/extension_messages.cc
parent4e86b6e1e67ef8cb2ff2770dfe4b7c87d09d85d8 (diff)
downloadchromium_src-9776e82e6f0c0b011007b12dc5e14b31e30da62b.zip
chromium_src-9776e82e6f0c0b011007b12dc5e14b31e30da62b.tar.gz
chromium_src-9776e82e6f0c0b011007b12dc5e14b31e30da62b.tar.bz2
Insert default stylesheet for platform apps.
Review URL: http://codereview.chromium.org/8542001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110017 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension_messages.cc')
-rw-r--r--chrome/common/extensions/extension_messages.cc13
1 files changed, 7 insertions, 6 deletions
diff --git a/chrome/common/extensions/extension_messages.cc b/chrome/common/extensions/extension_messages.cc
index 7ebee77..a326289 100644
--- a/chrome/common/extensions/extension_messages.cc
+++ b/chrome/common/extensions/extension_messages.cc
@@ -15,7 +15,7 @@ ExtensionMsg_Loaded_Params::~ExtensionMsg_Loaded_Params() {}
ExtensionMsg_Loaded_Params::ExtensionMsg_Loaded_Params(
const ExtensionMsg_Loaded_Params& other)
- : manifest(other.manifest->DeepCopy()),
+ : manifest(other.manifest),
location(other.location),
path(other.path),
apis(other.apis),
@@ -37,15 +37,16 @@ ExtensionMsg_Loaded_Params::ExtensionMsg_Loaded_Params(
// As we need more bits of extension data in the renderer, add more keys to
// this list.
const char* kRendererExtensionKeys[] = {
- extension_manifest_keys::kPublicKey,
- extension_manifest_keys::kName,
- extension_manifest_keys::kVersion,
+ extension_manifest_keys::kApp,
+ extension_manifest_keys::kContentScripts,
extension_manifest_keys::kIcons,
+ extension_manifest_keys::kName,
extension_manifest_keys::kPageAction,
extension_manifest_keys::kPageActions,
extension_manifest_keys::kPermissions,
- extension_manifest_keys::kApp,
- extension_manifest_keys::kContentScripts
+ extension_manifest_keys::kPlatformApp,
+ extension_manifest_keys::kPublicKey,
+ extension_manifest_keys::kVersion,
};
// Copy only the data we need.