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

Unified Diff: content/common/indexed_db/proxy_webidbcursor_impl.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/proxy_webidbcursor_impl.h
diff --git a/content/common/indexed_db/proxy_webidbcursor_impl.h b/content/common/indexed_db/proxy_webidbcursor_impl.h
index 74265a8f15eeee2ea63af52639a78ed570d0474e..b2d8194b29bc3c7e62e2e49b532ea00fb9113dd6 100644
--- a/content/common/indexed_db/proxy_webidbcursor_impl.h
+++ b/content/common/indexed_db/proxy_webidbcursor_impl.h
@@ -37,11 +37,12 @@ class RendererWebIDBCursorImpl : public WebKit::WebIDBCursor {
WebKit::WebExceptionCode& ec);
virtual void postSuccessHandlerCallback();
- void SetKeyAndValue(const IndexedDBKey& key, const IndexedDBKey& primary_key,
+ void SetKeyAndValue(const content::IndexedDBKey& key,
+ const content::IndexedDBKey& primary_key,
const content::SerializedScriptValue& value);
void SetPrefetchData(
- const std::vector<IndexedDBKey>& keys,
- const std::vector<IndexedDBKey>& primary_keys,
+ const std::vector<content::IndexedDBKey>& keys,
+ const std::vector<content::IndexedDBKey>& primary_keys,
const std::vector<content::SerializedScriptValue>& values);
void CachedContinue(WebKit::WebIDBCallbacks* callbacks);
@@ -49,13 +50,13 @@ class RendererWebIDBCursorImpl : public WebKit::WebIDBCursor {
private:
int32 idb_cursor_id_;
- IndexedDBKey key_;
- IndexedDBKey primary_key_;
+ content::IndexedDBKey key_;
+ content::IndexedDBKey primary_key_;
content::SerializedScriptValue value_;
// Prefetch cache.
- std::deque<IndexedDBKey> prefetch_keys_;
- std::deque<IndexedDBKey> prefetch_primary_keys_;
+ std::deque<content::IndexedDBKey> prefetch_keys_;
+ std::deque<content::IndexedDBKey> prefetch_primary_keys_;
std::deque<content::SerializedScriptValue> prefetch_values_;
// Number of continue calls that would qualify for a pre-fetch.
« no previous file with comments | « content/common/indexed_db/indexed_db_param_traits.cc ('k') | content/common/indexed_db/proxy_webidbcursor_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698