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

Unified Diff: content/common/indexed_db/indexed_db_dispatcher.h

Issue 10272018: Move IndexedDBKey, IndexedDBKeyRange into content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use "using content::*" aliasing for IDB/SSV types Created 8 years, 8 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/common/indexed_db/indexed_db_dispatcher.h
diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h
index 0b2934946d968cc704946ff9f79e9ee3ef5888fd..da6bb551ccc481b33c4b502755c7ccbe1165f2ce 100644
--- a/content/common/indexed_db/indexed_db_dispatcher.h
+++ b/content/common/indexed_db/indexed_db_dispatcher.h
@@ -21,8 +21,6 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCallbacks.h"
#include "webkit/glue/worker_task_runner.h"
-class IndexedDBKey;
-class IndexedDBKeyRange;
struct IndexedDBMsg_CallbacksSuccessCursorContinue_Params;
struct IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params;
struct IndexedDBMsg_CallbacksSuccessIDBCursor_Params;
@@ -39,6 +37,8 @@ class WebIDBTransaction;
}
namespace content {
+class IndexedDBKey;
+class IndexedDBKeyRange;
class SerializedScriptValue;
}
@@ -93,7 +93,7 @@ class CONTENT_EXPORT IndexedDBDispatcher
WebKit::WebExceptionCode* ec);
void RequestIDBCursorContinue(
- const IndexedDBKey& key,
+ const content::IndexedDBKey& key,
WebKit::WebIDBCallbacks* callbacks_ptr,
int32 idb_cursor_id,
WebKit::WebExceptionCode* ec);
@@ -149,28 +149,28 @@ class CONTENT_EXPORT IndexedDBDispatcher
WebKit::WebExceptionCode* ec);
void RequestIDBIndexGetObject(
- const IndexedDBKeyRange& key_range,
+ const content::IndexedDBKeyRange& key_range,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_index_id,
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
void RequestIDBIndexGetKey(
- const IndexedDBKeyRange& key_range,
+ const content::IndexedDBKeyRange& key_range,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_index_id,
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
void RequestIDBObjectStoreGet(
- const IndexedDBKeyRange& key_range,
+ const content::IndexedDBKeyRange& key_range,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_object_store_id,
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
void RequestIDBObjectStorePut(const content::SerializedScriptValue& value,
- const IndexedDBKey& key,
+ const content::IndexedDBKey& key,
WebKit::WebIDBObjectStore::PutMode putMode,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_object_store_id,
@@ -178,14 +178,14 @@ class CONTENT_EXPORT IndexedDBDispatcher
WebKit::WebExceptionCode* ec);
void RequestIDBObjectStoreDelete(
- const IndexedDBKey& key,
+ const content::IndexedDBKey& key,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_object_store_id,
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
void RequestIDBObjectStoreDeleteRange(
- const IndexedDBKeyRange& key_range,
+ const content::IndexedDBKeyRange& key_range,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_object_store_id,
const WebKit::WebIDBTransaction& transaction,
@@ -230,7 +230,7 @@ class CONTENT_EXPORT IndexedDBDispatcher
int32 object_id);
void OnSuccessIndexedDBKey(int32 thread_id,
int32 response_id,
- const IndexedDBKey& key);
+ const content::IndexedDBKey& key);
void OnSuccessIDBTransaction(int32 thread_id,
int32 response_id,
int32 object_id);
« no previous file with comments | « content/browser/indexed_db/idbbindingutilities_browsertest.cc ('k') | content/common/indexed_db/indexed_db_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698