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/utility/utility_thread_impl.cc | |
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/utility/utility_thread_impl.cc')
-rw-r--r-- | content/utility/utility_thread_impl.cc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/content/utility/utility_thread_impl.cc b/content/utility/utility_thread_impl.cc index 393dc3b..a743c27 100644 --- a/content/utility/utility_thread_impl.cc +++ b/content/utility/utility_thread_impl.cc @@ -72,7 +72,7 @@ bool UtilityThreadImpl::OnControlMessageReceived(const IPC::Message& msg) { void UtilityThreadImpl::OnIDBKeysFromValuesAndKeyPath( int id, - const std::vector<SerializedScriptValue>& serialized_script_values, + const std::vector<content::SerializedScriptValue>& serialized_script_values, const string16& idb_key_path) { std::vector<WebKit::WebSerializedScriptValue> web_values; ConvertVector(serialized_script_values, &web_values); @@ -89,11 +89,12 @@ void UtilityThreadImpl::OnIDBKeysFromValuesAndKeyPath( ReleaseProcessIfNeeded(); } -void UtilityThreadImpl::OnInjectIDBKey(const IndexedDBKey& key, - const SerializedScriptValue& value, - const string16& key_path) { - SerializedScriptValue new_value(webkit_glue::InjectIDBKey(key, value, - key_path)); +void UtilityThreadImpl::OnInjectIDBKey( + const IndexedDBKey& key, + const content::SerializedScriptValue& value, + const string16& key_path) { + content::SerializedScriptValue new_value( + webkit_glue::InjectIDBKey(key, value, key_path)); Send(new UtilityHostMsg_InjectIDBKey_Finished(new_value)); ReleaseProcessIfNeeded(); } |