diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-23 17:37:27 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-23 17:37:27 +0000 |
commit | c729db8b8a70750c6e4a3f9b8e4faa1468089246 (patch) | |
tree | ad6986db15b9e245beab6a0ac9d5a97c670ab7d5 /content/common/dom_storage_messages.h | |
parent | e7efab3c50978eae97612e334ccb86f2a2d5da95 (diff) | |
download | chromium_src-c729db8b8a70750c6e4a3f9b8e4faa1468089246.zip chromium_src-c729db8b8a70750c6e4a3f9b8e4faa1468089246.tar.gz chromium_src-c729db8b8a70750c6e4a3f9b8e4faa1468089246.tar.bz2 |
Don't use the DOMStorageType for a chrome IPC, so that we can get rid of that content include from chrome. We change a bool to it, only to change it back to a bool, so no need for it.
BUG=98716
Review URL: http://codereview.chromium.org/8667004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111363 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/dom_storage_messages.h')
-rw-r--r-- | content/common/dom_storage_messages.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/common/dom_storage_messages.h b/content/common/dom_storage_messages.h index a284ac0..189fa8d 100644 --- a/content/common/dom_storage_messages.h +++ b/content/common/dom_storage_messages.h @@ -3,6 +3,7 @@ // found in the LICENSE file. // Multiply-included message file, no traditional include guard. +#include "content/common/dom_storage_common.h" #include "content/public/common/common_param_traits.h" #include "googleurl/src/gurl.h" #include "ipc/ipc_message_macros.h" @@ -11,6 +12,8 @@ #define IPC_MESSAGE_START DOMStorageMsgStart +IPC_ENUM_TRAITS(DOMStorageType) + // Signals a storage event. IPC_STRUCT_BEGIN(DOMStorageMsg_Event_Params) // The key that generated the storage event. Null if clear() was called. |