diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-26 18:45:21 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-26 18:45:21 +0000 |
commit | 2a521c50ab1cb527625a69f3130a421a01f84621 (patch) | |
tree | 68153622a64534e8400c122575ab4232b6de2725 /chrome/common/render_messages.h | |
parent | 43792ceca73af6e06c079db4f034b28a4402989d (diff) | |
download | chromium_src-2a521c50ab1cb527625a69f3130a421a01f84621.zip chromium_src-2a521c50ab1cb527625a69f3130a421a01f84621.tar.gz chromium_src-2a521c50ab1cb527625a69f3130a421a01f84621.tar.bz2 |
Refactor away all the duplicate extension data structures in
renderer processes by sending the full extension object instead.
ExtensionRendererInfo remains, but it is now just a
convenience wrapper around a map of Extension objects.
This allows us to reuse all the helper methods on Extension,
ExtensionIconSet, ExtensionExtent, etc without duplicating
them in the renderer.
Also changed broadcasts to renderers to send only changed
information, not entire set of extension data again.
BUG=70516
Review URL: http://codereview.chromium.org/6242010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72654 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages.h')
-rw-r--r-- | chrome/common/render_messages.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h index f0ce905..6e5959a 100644 --- a/chrome/common/render_messages.h +++ b/chrome/common/render_messages.h @@ -104,8 +104,7 @@ struct ViewHostMsg_ShowNotification_Params; struct ViewMsg_New_Params; struct ViewHostMsg_CreateWindow_Params; struct ViewHostMsg_RunFileChooser_Params; -struct ViewMsg_ExtensionRendererInfo; -struct ViewMsg_ExtensionsUpdated_Params; +struct ViewMsg_ExtensionLoaded_Params; struct ViewMsg_DeviceOrientationUpdated_Params; struct ViewHostMsg_DomMessage_Params; struct ViewHostMsg_AccessibilityNotification_Params; |