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) {} |