From 1c321ee57a522e891d91a41a09bd900f0afd6f0d Mon Sep 17 00:00:00 2001 From: "aa@chromium.org" Date: Mon, 21 May 2012 03:02:34 +0000 Subject: Move Extension into extensions namespace BUG=117262 TBR=aa@chromium.org Review URL: https://chromiumcodereview.appspot.com/10375021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138074 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/extensions/extension_messages.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'chrome/common/extensions/extension_messages.h') diff --git a/chrome/common/extensions/extension_messages.h b/chrome/common/extensions/extension_messages.h index 4b634a6..0c40ec9 100644 --- a/chrome/common/extensions/extension_messages.h +++ b/chrome/common/extensions/extension_messages.h @@ -103,16 +103,16 @@ typedef std::map SubstitutionMap; struct ExtensionMsg_Loaded_Params { ExtensionMsg_Loaded_Params(); ~ExtensionMsg_Loaded_Params(); - explicit ExtensionMsg_Loaded_Params(const Extension* extension); + explicit ExtensionMsg_Loaded_Params(const extensions::Extension* extension); // Creates a new extension from the data in this object. - scoped_refptr ConvertToExtension() const; + scoped_refptr ConvertToExtension() const; // The subset of the extension manifest data we send to renderers. linked_ptr manifest; // The location the extension was installed from. - Extension::Location location; + extensions::Extension::Location location; // The path the extension was loaded from. This is used in the renderer only // to generate the extension ID for extensions that are loaded unpacked. @@ -214,7 +214,8 @@ IPC_MESSAGE_CONTROL1(ExtensionMsg_Unloaded, // Updates the scripting whitelist for extensions in the render process. This is // only used for testing. IPC_MESSAGE_CONTROL1(ExtensionMsg_SetScriptingWhitelist, - Extension::ScriptingWhitelist /* extenison ids */) + // extension ids + extensions::Extension::ScriptingWhitelist) // Notification that renderer should run some JavaScript code. IPC_MESSAGE_ROUTED1(ExtensionMsg_ExecuteCode, -- cgit v1.1