Index: content/common/indexed_db/indexed_db_key_path.h |
diff --git a/content/common/indexed_db/indexed_db_key_path.h b/content/common/indexed_db/indexed_db_key_path.h |
index 1baae2f00ec2f73c52a43756c8276224e21e8d6a..a17c193bd2004c740554a464fe657b194f0333ad 100644 |
--- a/content/common/indexed_db/indexed_db_key_path.h |
+++ b/content/common/indexed_db/indexed_db_key_path.h |
@@ -16,20 +16,20 @@ namespace content { |
class CONTENT_EXPORT IndexedDBKeyPath { |
public: |
- IndexedDBKeyPath(); // Defaults to WebKit::WebIDBKeyPathTypeNull. |
+ IndexedDBKeyPath(); // Defaults to blink::WebIDBKeyPathTypeNull. |
explicit IndexedDBKeyPath(const string16&); |
explicit IndexedDBKeyPath(const std::vector<string16>&); |
~IndexedDBKeyPath(); |
- bool IsNull() const { return type_ == WebKit::WebIDBKeyPathTypeNull; } |
+ bool IsNull() const { return type_ == blink::WebIDBKeyPathTypeNull; } |
bool operator==(const IndexedDBKeyPath& other) const; |
- WebKit::WebIDBKeyPathType type() const { return type_; } |
+ blink::WebIDBKeyPathType type() const { return type_; } |
const std::vector<string16>& array() const; |
const string16& string() const; |
private: |
- WebKit::WebIDBKeyPathType type_; |
+ blink::WebIDBKeyPathType type_; |
string16 string_; |
std::vector<string16> array_; |
}; |