Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: Source/core/dom/ContainerNode.cpp

Issue 394353002: Replace tests of ASSERT_ENABLED with ENABLE(ASSERT). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 ASSERT_WITH_SECURITY_IMPLICATION(!n->m_deletionHasBegun); 479 ASSERT_WITH_SECURITY_IMPLICATION(!n->m_deletionHasBegun);
480 480
481 next = n->nextSibling(); 481 next = n->nextSibling();
482 n->setNextSibling(0); 482 n->setNextSibling(0);
483 n->setParentOrShadowHostNode(0); 483 n->setParentOrShadowHostNode(0);
484 container.setFirstChild(next); 484 container.setFirstChild(next);
485 if (next) 485 if (next)
486 next->setPreviousSibling(0); 486 next->setPreviousSibling(0);
487 487
488 if (!n->refCount()) { 488 if (!n->refCount()) {
489 #if SECURITY_ASSERT_ENABLED 489 #if ENABLE(SECURITY_ASSERT)
490 n->m_deletionHasBegun = true; 490 n->m_deletionHasBegun = true;
491 #endif 491 #endif
492 // Add the node to the list of nodes to be deleted. 492 // Add the node to the list of nodes to be deleted.
493 // Reuse the nextSibling pointer for this purpose. 493 // Reuse the nextSibling pointer for this purpose.
494 if (tail) 494 if (tail)
495 tail->setNextSibling(n); 495 tail->setNextSibling(n);
496 else 496 else
497 head = n; 497 head = n;
498 498
499 tail = n; 499 tail = n;
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 return true; 1387 return true;
1388 1388
1389 if (node->isElementNode() && toElement(node)->shadow()) 1389 if (node->isElementNode() && toElement(node)->shadow())
1390 return true; 1390 return true;
1391 1391
1392 return false; 1392 return false;
1393 } 1393 }
1394 #endif 1394 #endif
1395 1395
1396 } // namespace WebCore 1396 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698