| Index: third_party/WebKit/public/platform/WebPrivatePtr.h
|
| diff --git a/third_party/WebKit/public/platform/WebPrivatePtr.h b/third_party/WebKit/public/platform/WebPrivatePtr.h
|
| index 047d32cecd3a77ed29fab882a117c9ed459e012e..724b0aeedf26e6779b713e3e96db0ed98c02e5b4 100644
|
| --- a/third_party/WebKit/public/platform/WebPrivatePtr.h
|
| +++ b/third_party/WebKit/public/platform/WebPrivatePtr.h
|
| @@ -32,6 +32,7 @@
|
| #define WebPrivatePtr_h
|
|
|
| #include "WebCommon.h"
|
| +#include "base/logging.h"
|
|
|
| #if INSIDE_BLINK
|
| #include "platform/heap/Handle.h"
|
| @@ -248,7 +249,7 @@ public:
|
| // want to expose destructors of core classes to embedders. We should
|
| // call reset() manually in destructors of classes with WebPrivatePtr
|
| // members.
|
| - BLINK_ASSERT(!m_storage);
|
| + DCHECK(!m_storage);
|
| }
|
|
|
| bool isNull() const { return !m_storage; }
|
|
|