| OLD | NEW |
| 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, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 uint32_t m_nodeFlags; | 102 uint32_t m_nodeFlags; |
| 103 void* m_pointer[5]; | 103 void* m_pointer[5]; |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 static_assert(sizeof(Node) <= sizeof(SameSizeAsNode), "Node should stay small"); | 106 static_assert(sizeof(Node) <= sizeof(SameSizeAsNode), "Node should stay small"); |
| 107 | 107 |
| 108 #if !ENABLE(OILPAN) | 108 #if !ENABLE(OILPAN) |
| 109 void* Node::operator new(size_t size) | 109 void* Node::operator new(size_t size) |
| 110 { | 110 { |
| 111 ASSERT(isMainThread()); | 111 ASSERT(isMainThread()); |
| 112 return partitionAlloc(WTF::Partitions::getObjectModelPartition(), size); | 112 return partitionAlloc(WTF::Partitions::objectModelPartition(), size); |
| 113 } | 113 } |
| 114 | 114 |
| 115 void Node::operator delete(void* ptr) | 115 void Node::operator delete(void* ptr) |
| 116 { | 116 { |
| 117 ASSERT(isMainThread()); | 117 ASSERT(isMainThread()); |
| 118 partitionFree(ptr); | 118 partitionFree(ptr); |
| 119 } | 119 } |
| 120 #endif | 120 #endif |
| 121 | 121 |
| 122 #if DUMP_NODE_STATISTICS | 122 #if DUMP_NODE_STATISTICS |
| (...skipping 2337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2460 | 2460 |
| 2461 void showNodePath(const blink::Node* node) | 2461 void showNodePath(const blink::Node* node) |
| 2462 { | 2462 { |
| 2463 if (node) | 2463 if (node) |
| 2464 node->showNodePathForThis(); | 2464 node->showNodePathForThis(); |
| 2465 else | 2465 else |
| 2466 fprintf(stderr, "Cannot showNodePath for (nil)\n"); | 2466 fprintf(stderr, "Cannot showNodePath for (nil)\n"); |
| 2467 } | 2467 } |
| 2468 | 2468 |
| 2469 #endif | 2469 #endif |
| OLD | NEW |