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

Unified Diff: content/child/indexed_db/proxy_webidbcursor_impl.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/child/indexed_db/proxy_webidbcursor_impl.h
diff --git a/content/child/indexed_db/proxy_webidbcursor_impl.h b/content/child/indexed_db/proxy_webidbcursor_impl.h
index 2c8b8f289683acbdd01b11f094e8b75e9eca9182..87602b83fb1e4987f21ded514d7f53ea52d2e3d9 100644
--- a/content/child/indexed_db/proxy_webidbcursor_impl.h
+++ b/content/child/indexed_db/proxy_webidbcursor_impl.h
@@ -23,22 +23,22 @@ namespace content {
class ThreadSafeSender;
class CONTENT_EXPORT RendererWebIDBCursorImpl
- : NON_EXPORTED_BASE(public WebKit::WebIDBCursor) {
+ : NON_EXPORTED_BASE(public blink::WebIDBCursor) {
public:
RendererWebIDBCursorImpl(int32 ipc_cursor_id,
ThreadSafeSender* thread_safe_sender);
virtual ~RendererWebIDBCursorImpl();
- virtual void advance(unsigned long count, WebKit::WebIDBCallbacks* callback);
- virtual void continueFunction(const WebKit::WebIDBKey& key,
- WebKit::WebIDBCallbacks* callback);
+ virtual void advance(unsigned long count, blink::WebIDBCallbacks* callback);
+ virtual void continueFunction(const blink::WebIDBKey& key,
+ blink::WebIDBCallbacks* callback);
virtual void postSuccessHandlerCallback();
void SetPrefetchData(const std::vector<IndexedDBKey>& keys,
const std::vector<IndexedDBKey>& primary_keys,
- const std::vector<WebKit::WebData>& values);
+ const std::vector<blink::WebData>& values);
- void CachedContinue(WebKit::WebIDBCallbacks* callbacks);
+ void CachedContinue(blink::WebIDBCallbacks* callbacks);
void ResetPrefetchCache();
private:
@@ -49,7 +49,7 @@ class CONTENT_EXPORT RendererWebIDBCursorImpl
// Prefetch cache.
std::deque<IndexedDBKey> prefetch_keys_;
std::deque<IndexedDBKey> prefetch_primary_keys_;
- std::deque<WebKit::WebData> prefetch_values_;
+ std::deque<blink::WebData> prefetch_values_;
// Number of continue calls that would qualify for a pre-fetch.
int continue_count_;
« no previous file with comments | « content/child/indexed_db/indexed_db_key_builders.cc ('k') | content/child/indexed_db/proxy_webidbcursor_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698