| Index: third_party/WebKit/Source/modules/storage/Storage.cpp
|
| diff --git a/third_party/WebKit/Source/modules/storage/Storage.cpp b/third_party/WebKit/Source/modules/storage/Storage.cpp
|
| index 372f916d90bf88df0838c07375930a8f054d85f5..e73646a4e64c60eb7107bf340da1874c8274ac24 100644
|
| --- a/third_party/WebKit/Source/modules/storage/Storage.cpp
|
| +++ b/third_party/WebKit/Source/modules/storage/Storage.cpp
|
| @@ -40,8 +40,8 @@ Storage::Storage(LocalFrame* frame, StorageArea* storageArea)
|
| : DOMWindowProperty(frame)
|
| , m_storageArea(storageArea)
|
| {
|
| - ASSERT(m_frame);
|
| - ASSERT(m_storageArea);
|
| + DCHECK(frame);
|
| + DCHECK(m_storageArea);
|
| }
|
|
|
| String Storage::anonymousNamedGetter(const AtomicString& name, ExceptionState& exceptionState)
|
|
|