diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-21 21:37:47 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-21 21:37:47 +0000 |
commit | cb4c5fbce80d3adb0faf6056c0e255aa481757d8 (patch) | |
tree | 166729f78dce22431eee769ab58fc241484c0b69 /content/common/utility_messages.h | |
parent | ef32ea677641f25e47a40a101501b35b8e3a1bd0 (diff) | |
download | chromium_src-cb4c5fbce80d3adb0faf6056c0e255aa481757d8.zip chromium_src-cb4c5fbce80d3adb0faf6056c0e255aa481757d8.tar.gz chromium_src-cb4c5fbce80d3adb0faf6056c0e255aa481757d8.tar.bz2 |
Move SerializedScriptValue to content/public/common and put it into the content namespace.
BUG=98716
Review URL: http://codereview.chromium.org/8372009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106781 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/utility_messages.h')
-rw-r--r-- | content/common/utility_messages.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/common/utility_messages.h b/content/common/utility_messages.h index 05dcde5..4b197ac 100644 --- a/content/common/utility_messages.h +++ b/content/common/utility_messages.h @@ -10,8 +10,8 @@ #include "base/basictypes.h" #include "content/common/indexed_db_key.h" #include "content/common/indexed_db_param_traits.h" -#include "content/common/serialized_script_value.h" #include "content/public/common/common_param_traits.h" +#include "content/public/common/serialized_script_value.h" #include "ipc/ipc_message_macros.h" #include "webkit/plugins/webplugininfo.h" @@ -25,12 +25,12 @@ // SerializedScriptValue vector and reply with the corresponding IDBKeys. IPC_MESSAGE_CONTROL3(UtilityMsg_IDBKeysFromValuesAndKeyPath, int, // id - std::vector<SerializedScriptValue>, + std::vector<content::SerializedScriptValue>, string16) // IDBKeyPath IPC_MESSAGE_CONTROL3(UtilityMsg_InjectIDBKey, IndexedDBKey /* key */, - SerializedScriptValue /* value */, + content::SerializedScriptValue /* value */, string16 /* key path*/) // Tells the utility process that it's running in batch mode. @@ -64,7 +64,7 @@ IPC_MESSAGE_CONTROL1(UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Failed, // Reply when the utility process has finished injecting an IDBKey into // a SerializedScriptValue. IPC_MESSAGE_CONTROL1(UtilityHostMsg_InjectIDBKey_Finished, - SerializedScriptValue /* new value */) + content::SerializedScriptValue /* new value */) #if defined(OS_POSIX) // Notifies the browser when a plugin failed to load so the two processes can |