diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-21 18:29:36 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-21 18:29:36 +0000 |
commit | 6766b170698ebf9dfdf6972e937aea7d60f2a713 (patch) | |
tree | 6fa94a46702e89011e7d1096f69d349768f6bbdb /ipc/param_traits_log_macros.h | |
parent | 088c4d0895fcc1ae30fe988057ab7866be303d74 (diff) | |
download | chromium_src-6766b170698ebf9dfdf6972e937aea7d60f2a713.zip chromium_src-6766b170698ebf9dfdf6972e937aea7d60f2a713.tar.gz chromium_src-6766b170698ebf9dfdf6972e937aea7d60f2a713.tar.bz2 |
Get rid of a bunch of view_messages.h includes from chrome by making the TabContentsObserver interface not use a struct from it. Instead, the interface uses a new struct, content::FrameNavigateParams, that's in the public directory. The IPC message's struct derives from it.
BUG=98716
Review URL: http://codereview.chromium.org/8603015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110963 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/param_traits_log_macros.h')
-rw-r--r-- | ipc/param_traits_log_macros.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ipc/param_traits_log_macros.h b/ipc/param_traits_log_macros.h index 8259a0d..b2d1f2e 100644 --- a/ipc/param_traits_log_macros.h +++ b/ipc/param_traits_log_macros.h @@ -13,8 +13,11 @@ // STRUCT declarations cause corresponding STRUCT_TRAITS declarations to occur. #undef IPC_STRUCT_BEGIN +#undef IPC_STRUCT_BEGIN_WITH_PARENT #undef IPC_STRUCT_MEMBER #undef IPC_STRUCT_END +#define IPC_STRUCT_BEGIN_WITH_PARENT(struct_name, parent) \ + IPC_STRUCT_BEGIN(struct_name) #define IPC_STRUCT_BEGIN(struct_name) IPC_STRUCT_TRAITS_BEGIN(struct_name) #define IPC_STRUCT_MEMBER(type, name) IPC_STRUCT_TRAITS_MEMBER(name) #define IPC_STRUCT_END() IPC_STRUCT_TRAITS_END() |