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

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

Issue 19442002: Convert to new WebIDBTypes enums and accessors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix content/common/DEPS Created 7 years, 5 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/child/indexed_db/proxy_webidbcursor_impl.cc
diff --git a/content/child/indexed_db/proxy_webidbcursor_impl.cc b/content/child/indexed_db/proxy_webidbcursor_impl.cc
index f23fd318537d7ab1993cf2ab84df213d4886d4c8..2343880de17cdd6b9a3bdf24875e246a3b631f9a 100644
--- a/content/child/indexed_db/proxy_webidbcursor_impl.cc
+++ b/content/child/indexed_db/proxy_webidbcursor_impl.cc
@@ -59,7 +59,7 @@ void RendererWebIDBCursorImpl::continueFunction(
IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get());
scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr);
- if (key.type() == WebIDBKey::NullType) {
+ if (key.keyType() == WebKit::WebIDBKeyTypeNull) {
// No key, so this would qualify for a prefetch.
++continue_count_;

Powered by Google App Engine
This is Rietveld 408576698