| Index: third_party/WebKit/Source/core/dom/Node.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Node.cpp b/third_party/WebKit/Source/core/dom/Node.cpp
|
| index f7847ace487e49d0ae5085f0c960d53716078193..9136af01c983dd44c735372af47123d257c6c046 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Node.cpp
|
| @@ -296,7 +296,7 @@ Node::Node(TreeScope* treeScope, ConstructionType type)
|
| Node::~Node() {
|
| // With Oilpan, the rare data finalizer also asserts for
|
| // this condition (we cannot directly access it here.)
|
| - RELEASE_ASSERT(hasRareData() || !layoutObject());
|
| + CHECK(hasRareData() || !layoutObject());
|
| InstanceCounters::decrementNodeCounter();
|
| }
|
|
|
|
|