diff options
author | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-22 23:48:57 +0000 |
---|---|---|
committer | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-22 23:48:57 +0000 |
commit | 8374250ef7bc60bd9329e6b039777d776e0de45a (patch) | |
tree | 45900dc062916cf0fb72d10d1438b6c9fa8396ab /content/utility | |
parent | de56c47982b4cb163f5f29fadd02878f9b485ad1 (diff) | |
download | chromium_src-8374250ef7bc60bd9329e6b039777d776e0de45a.zip chromium_src-8374250ef7bc60bd9329e6b039777d776e0de45a.tar.gz chromium_src-8374250ef7bc60bd9329e6b039777d776e0de45a.tar.bz2 |
Remove all the indexeddb-related utility process code
BUG=129471
Review URL: https://chromiumcodereview.appspot.com/10834350
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152873 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/utility')
-rw-r--r-- | content/utility/utility_thread_impl.cc | 32 | ||||
-rw-r--r-- | content/utility/utility_thread_impl.h | 11 |
2 files changed, 0 insertions, 43 deletions
diff --git a/content/utility/utility_thread_impl.cc b/content/utility/utility_thread_impl.cc index 421d24a..813d673 100644 --- a/content/utility/utility_thread_impl.cc +++ b/content/utility/utility_thread_impl.cc @@ -11,15 +11,11 @@ #include "base/memory/scoped_vector.h" #include "content/common/child_process.h" #include "content/common/child_process_messages.h" -#include "content/common/indexed_db/indexed_db_key.h" -#include "content/common/indexed_db/indexed_db_key_path.h" #include "content/common/utility_messages.h" #include "content/common/webkitplatformsupport_impl.h" #include "content/public/utility/content_utility_client.h" -#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerializedScriptValue.h" -#include "webkit/glue/idb_bindings.h" #include "webkit/plugins/npapi/plugin_list.h" #if defined(TOOLKIT_GTK) @@ -79,9 +75,6 @@ bool UtilityThreadImpl::OnControlMessageReceived(const IPC::Message& msg) { bool handled = true; IPC_BEGIN_MESSAGE_MAP(UtilityThreadImpl, msg) - IPC_MESSAGE_HANDLER(UtilityMsg_IDBKeysFromValuesAndKeyPath, - OnIDBKeysFromValuesAndKeyPath) - IPC_MESSAGE_HANDLER(UtilityMsg_InjectIDBKey, OnInjectIDBKey) IPC_MESSAGE_HANDLER(UtilityMsg_BatchMode_Started, OnBatchModeStarted) IPC_MESSAGE_HANDLER(UtilityMsg_BatchMode_Finished, OnBatchModeFinished) #if defined(OS_POSIX) @@ -92,31 +85,6 @@ bool UtilityThreadImpl::OnControlMessageReceived(const IPC::Message& msg) { return handled; } -void UtilityThreadImpl::OnIDBKeysFromValuesAndKeyPath( - int id, - const std::vector<content::SerializedScriptValue>& serialized_script_values, - const content::IndexedDBKeyPath& idb_key_path) { - std::vector<WebKit::WebSerializedScriptValue> web_values; - ConvertVector(serialized_script_values, &web_values); - std::vector<WebKit::WebIDBKey> web_keys; - webkit_glue::IDBKeysFromValuesAndKeyPath( - web_values, idb_key_path, &web_keys); - std::vector<content::IndexedDBKey> keys; - ConvertVector(web_keys, &keys); - Send(new UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Succeeded(id, keys)); - ReleaseProcessIfNeeded(); -} - -void UtilityThreadImpl::OnInjectIDBKey( - const content::IndexedDBKey& key, - const content::SerializedScriptValue& value, - const content::IndexedDBKeyPath& key_path) { - content::SerializedScriptValue new_value( - webkit_glue::InjectIDBKey(key, value, key_path)); - Send(new UtilityHostMsg_InjectIDBKey_Finished(new_value)); - ReleaseProcessIfNeeded(); -} - void UtilityThreadImpl::OnBatchModeStarted() { batch_mode_ = true; } diff --git a/content/utility/utility_thread_impl.h b/content/utility/utility_thread_impl.h index 45f7a8b..3e7fd9c 100644 --- a/content/utility/utility_thread_impl.h +++ b/content/utility/utility_thread_impl.h @@ -17,9 +17,6 @@ class FilePath; namespace content { -class IndexedDBKey; -class IndexedDBKeyPath; -class SerializedScriptValue; class WebKitPlatformSupportImpl; } @@ -42,14 +39,6 @@ class UtilityThreadImpl : public content::UtilityThread, virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE; // IPC message handlers. - void OnIDBKeysFromValuesAndKeyPath( - int id, - const std::vector<content::SerializedScriptValue>& - serialized_script_values, - const content::IndexedDBKeyPath& idb_key_path); - void OnInjectIDBKey(const content::IndexedDBKey& key, - const content::SerializedScriptValue& value, - const content::IndexedDBKeyPath& key_path); void OnBatchModeStarted(); void OnBatchModeFinished(); |