Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1238)

Unified Diff: content/renderer/indexed_db/renderer_webidbobjectstore_impl.cc

Issue 9368053: Move indexed db files from content/renderer to content/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unneccesary include Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/indexed_db/renderer_webidbobjectstore_impl.cc
diff --git a/content/renderer/indexed_db/renderer_webidbobjectstore_impl.cc b/content/renderer/indexed_db/renderer_webidbobjectstore_impl.cc
deleted file mode 100644
index 9e1a002bc4a6ea90eaa250c2ece000ce317853ee..0000000000000000000000000000000000000000
--- a/content/renderer/indexed_db/renderer_webidbobjectstore_impl.cc
+++ /dev/null
@@ -1,185 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "content/renderer/indexed_db/renderer_webidbobjectstore_impl.h"
-
-#include "content/common/indexed_db/indexed_db_messages.h"
-#include "content/public/common/serialized_script_value.h"
-#include "content/renderer/indexed_db/indexed_db_dispatcher.h"
-#include "content/renderer/indexed_db/renderer_webidbindex_impl.h"
-#include "content/renderer/indexed_db/renderer_webidbtransaction_impl.h"
-#include "content/renderer/render_thread_impl.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMStringList.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyRange.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerializedScriptValue.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
-
-using WebKit::WebDOMStringList;
-using WebKit::WebExceptionCode;
-using WebKit::WebFrame;
-using WebKit::WebIDBCallbacks;
-using WebKit::WebIDBKeyRange;
-using WebKit::WebIDBIndex;
-using WebKit::WebIDBKey;
-using WebKit::WebIDBTransaction;
-using WebKit::WebSerializedScriptValue;
-using WebKit::WebString;
-
-RendererWebIDBObjectStoreImpl::RendererWebIDBObjectStoreImpl(
- int32 idb_object_store_id)
- : idb_object_store_id_(idb_object_store_id) {
-}
-
-RendererWebIDBObjectStoreImpl::~RendererWebIDBObjectStoreImpl() {
- // It's not possible for there to be pending callbacks that address this
- // object since inside WebKit, they hold a reference to the object wich owns
- // this object. But, if that ever changed, then we'd need to invalidate
- // any such pointers.
- ChildThread::current()->Send(
- new IndexedDBHostMsg_ObjectStoreDestroyed(idb_object_store_id_));
-}
-
-WebString RendererWebIDBObjectStoreImpl::name() const {
- string16 result;
- ChildThread::current()->Send(
- new IndexedDBHostMsg_ObjectStoreName(idb_object_store_id_, &result));
- return result;
-}
-
-WebString RendererWebIDBObjectStoreImpl::keyPath() const {
- NullableString16 result;
- ChildThread::current()->Send(
- new IndexedDBHostMsg_ObjectStoreKeyPath(idb_object_store_id_, &result));
- return result;
-}
-
-WebDOMStringList RendererWebIDBObjectStoreImpl::indexNames() const {
- std::vector<string16> result;
- ChildThread::current()->Send(
- new IndexedDBHostMsg_ObjectStoreIndexNames(
- idb_object_store_id_, &result));
- WebDOMStringList web_result;
- for (std::vector<string16>::const_iterator it = result.begin();
- it != result.end(); ++it) {
- web_result.append(*it);
- }
- return web_result;
-}
-
-void RendererWebIDBObjectStoreImpl::get(
- const WebIDBKey& key,
- WebIDBCallbacks* callbacks,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBObjectStoreGet(
- IndexedDBKey(key), callbacks, idb_object_store_id_, transaction, &ec);
-}
-
-void RendererWebIDBObjectStoreImpl::put(
- const WebSerializedScriptValue& value,
- const WebIDBKey& key,
- PutMode put_mode,
- WebIDBCallbacks* callbacks,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBObjectStorePut(
- content::SerializedScriptValue(value), IndexedDBKey(key), put_mode,
- callbacks, idb_object_store_id_, transaction, &ec);
-}
-
-void RendererWebIDBObjectStoreImpl::deleteFunction(
- const WebIDBKey& key,
- WebIDBCallbacks* callbacks,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBObjectStoreDelete(
- IndexedDBKey(key), callbacks, idb_object_store_id_, transaction, &ec);
-}
-
-void RendererWebIDBObjectStoreImpl::clear(
- WebIDBCallbacks* callbacks,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBObjectStoreClear(
- callbacks, idb_object_store_id_, transaction, &ec);
-}
-
-WebIDBIndex* RendererWebIDBObjectStoreImpl::createIndex(
- const WebString& name,
- const WebString& key_path,
- bool unique,
- bool multi_entry,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBHostMsg_ObjectStoreCreateIndex_Params params;
- params.name = name;
- params.key_path = key_path;
- params.unique = unique;
- params.multi_entry = multi_entry;
- params.transaction_id = IndexedDBDispatcher::TransactionId(transaction);
- params.idb_object_store_id = idb_object_store_id_;
-
- int32 index_id;
- ChildThread::current()->Send(
- new IndexedDBHostMsg_ObjectStoreCreateIndex(params, &index_id, &ec));
- if (!index_id)
- return NULL;
- return new RendererWebIDBIndexImpl(index_id);
-}
-
-WebIDBIndex* RendererWebIDBObjectStoreImpl::index(
- const WebString& name,
- WebExceptionCode& ec) {
- int32 idb_index_id;
- ChildThread::current()->Send(
- new IndexedDBHostMsg_ObjectStoreIndex(idb_object_store_id_, name,
- &idb_index_id, &ec));
- if (!idb_index_id)
- return NULL;
- return new RendererWebIDBIndexImpl(idb_index_id);
-}
-
-void RendererWebIDBObjectStoreImpl::deleteIndex(
- const WebString& name,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- ChildThread::current()->Send(
- new IndexedDBHostMsg_ObjectStoreDeleteIndex(
- idb_object_store_id_, name,
- IndexedDBDispatcher::TransactionId(transaction), &ec));
-}
-
-void RendererWebIDBObjectStoreImpl::openCursor(
- const WebIDBKeyRange& idb_key_range,
- unsigned short direction, WebIDBCallbacks* callbacks,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBObjectStoreOpenCursor(
- idb_key_range, direction, callbacks, idb_object_store_id_,
- transaction, &ec);
-}
-
-void RendererWebIDBObjectStoreImpl::count(
- const WebIDBKeyRange& idb_key_range,
- WebIDBCallbacks* callbacks,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBObjectStoreCount(
- idb_key_range, callbacks, idb_object_store_id_,
- transaction, &ec);
-}

Powered by Google App Engine
This is Rietveld 408576698