diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-29 04:08:14 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-29 04:08:14 +0000 |
commit | c08e793bb04f486d12a02cec03cf5decea834996 (patch) | |
tree | a75e19e8e0e478bfbc6e89bc5664ef2d8027b81a /chrome/common/render_messages.h | |
parent | 034d389dae76c526bb377772935009e98e55044e (diff) | |
download | chromium_src-c08e793bb04f486d12a02cec03cf5decea834996.zip chromium_src-c08e793bb04f486d12a02cec03cf5decea834996.tar.gz chromium_src-c08e793bb04f486d12a02cec03cf5decea834996.tar.bz2 |
Remove render_messages_params files since they're not needed anymore. I moved the search provider related enums to another file.
TBR=tsepez
Review URL: http://codereview.chromium.org/6683066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79659 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages.h')
-rw-r--r-- | chrome/common/render_messages.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h index 5bc6626..61272d4 100644 --- a/chrome/common/render_messages.h +++ b/chrome/common/render_messages.h @@ -20,7 +20,7 @@ #include "chrome/common/content_settings.h" #include "chrome/common/instant_types.h" #include "chrome/common/nacl_types.h" -#include "chrome/common/render_messages_params.h" +#include "chrome/common/search_provider.h" #include "chrome/common/thumbnail_score.h" #include "chrome/common/translate_errors.h" #include "chrome/common/view_types.h" @@ -100,6 +100,8 @@ struct ParamTraits<ContentSettings> { IPC_ENUM_TRAITS(ContentSetting) IPC_ENUM_TRAITS(ContentSettingsType) IPC_ENUM_TRAITS(InstantCompleteBehavior) +IPC_ENUM_TRAITS(search_provider::OSDDType) +IPC_ENUM_TRAITS(search_provider::InstallState) IPC_ENUM_TRAITS(TranslateErrors::Type) IPC_ENUM_TRAITS(ViewType::Type) IPC_ENUM_TRAITS(WebKit::WebConsoleMessage::Level) @@ -372,15 +374,14 @@ IPC_SYNC_MESSAGE_CONTROL2_3(ViewHostMsg_LaunchNaCl, IPC_MESSAGE_ROUTED3(ViewHostMsg_PageHasOSDD, int32 /* page_id */, GURL /* url of OS description document */, - ViewHostMsg_PageHasOSDD_Type) + search_provider::OSDDType) // Find out if the given url's security origin is installed as a search // provider. -IPC_SYNC_MESSAGE_ROUTED2_1( - ViewHostMsg_GetSearchProviderInstallState, - GURL /* page url */, - GURL /* inquiry url */, - ViewHostMsg_GetSearchProviderInstallState_Params /* install */) +IPC_SYNC_MESSAGE_ROUTED2_1(ViewHostMsg_GetSearchProviderInstallState, + GURL /* page url */, + GURL /* inquiry url */, + search_provider::InstallState /* install */) // Stores new inspector setting in the profile. IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, |