Index: content/common/indexed_db/indexed_db_key_path.cc |
diff --git a/content/common/indexed_db/indexed_db_key_path.cc b/content/common/indexed_db/indexed_db_key_path.cc |
index be6adfd31ff98be162fca79479da6b0bb64ec736..b01de7340d60961efc9c2c8c9bb127ed5d647174 100644 |
--- a/content/common/indexed_db/indexed_db_key_path.cc |
+++ b/content/common/indexed_db/indexed_db_key_path.cc |
@@ -8,9 +8,9 @@ |
namespace content { |
-using WebKit::WebIDBKeyPathTypeArray; |
-using WebKit::WebIDBKeyPathTypeNull; |
-using WebKit::WebIDBKeyPathTypeString; |
+using blink::WebIDBKeyPathTypeArray; |
+using blink::WebIDBKeyPathTypeNull; |
+using blink::WebIDBKeyPathTypeString; |
IndexedDBKeyPath::IndexedDBKeyPath() : type_(WebIDBKeyPathTypeNull) {} |
@@ -23,12 +23,12 @@ IndexedDBKeyPath::IndexedDBKeyPath(const std::vector<string16>& array) |
IndexedDBKeyPath::~IndexedDBKeyPath() {} |
const std::vector<string16>& IndexedDBKeyPath::array() const { |
- DCHECK(type_ == WebKit::WebIDBKeyPathTypeArray); |
+ DCHECK(type_ == blink::WebIDBKeyPathTypeArray); |
return array_; |
} |
const string16& IndexedDBKeyPath::string() const { |
- DCHECK(type_ == WebKit::WebIDBKeyPathTypeString); |
+ DCHECK(type_ == blink::WebIDBKeyPathTypeString); |
return string_; |
} |