| Index: third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.h b/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.h
|
| index a54481a2a846ec9387990e87974cd17329a03534..ecf126e6323456ceccf398bca5908f7d3ddb9aba 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.h
|
| @@ -61,12 +61,12 @@ class MODULES_EXPORT IDBKeyPath {
|
| Type GetType() const { return type_; }
|
|
|
| const Vector<String>& Array() const {
|
| - ASSERT(type_ == kArrayType);
|
| + DCHECK_EQ(type_, kArrayType);
|
| return array_;
|
| }
|
|
|
| const String& GetString() const {
|
| - ASSERT(type_ == kStringType);
|
| + DCHECK_EQ(type_, kStringType);
|
| return string_;
|
| }
|
|
|
|
|