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

Unified Diff: content/common/indexed_db/indexed_db_key_range.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/common/indexed_db/indexed_db_key_range.cc
diff --git a/content/common/indexed_db/indexed_db_key_range.cc b/content/common/indexed_db/indexed_db_key_range.cc
index 28a80d90de4fe72cdc6ae3efdca3362eb5f6f53f..77b9b9af8320974924fddab4d5e829e1f9ee6a2b 100644
--- a/content/common/indexed_db/indexed_db_key_range.cc
+++ b/content/common/indexed_db/indexed_db_key_range.cc
@@ -5,15 +5,15 @@
#include "content/common/indexed_db/indexed_db_key_range.h"
#include "base/logging.h"
+#include "third_party/WebKit/public/platform/WebIDBKey.h"
namespace content {
using WebKit::WebIDBKeyRange;
-using WebKit::WebIDBKey;
IndexedDBKeyRange::IndexedDBKeyRange()
- : lower_(WebIDBKey::NullType),
- upper_(WebIDBKey::NullType),
+ : lower_(WebKit::WebIDBKeyTypeNull),
+ upper_(WebKit::WebIDBKeyTypeNull),
lower_open_(false),
upper_open_(false) {}
« no previous file with comments | « content/common/indexed_db/indexed_db_key_path.cc ('k') | content/common/indexed_db/indexed_db_key_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698