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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 for (Node* node = this; node && !node->childNeedsDistributionRecalc(); node
= node->parentOrShadowHostNode()) | 694 for (Node* node = this; node && !node->childNeedsDistributionRecalc(); node
= node->parentOrShadowHostNode()) |
695 node->setChildNeedsDistributionRecalc(); | 695 node->setChildNeedsDistributionRecalc(); |
696 document().scheduleRenderTreeUpdateIfNeeded(); | 696 document().scheduleRenderTreeUpdateIfNeeded(); |
697 } | 697 } |
698 | 698 |
699 namespace { | 699 namespace { |
700 | 700 |
701 PassRefPtr<JSONArray> jsStackAsJSONArray() | 701 PassRefPtr<JSONArray> jsStackAsJSONArray() |
702 { | 702 { |
703 RefPtr<JSONArray> jsonArray = JSONArray::create(); | 703 RefPtr<JSONArray> jsonArray = JSONArray::create(); |
704 RefPtr<ScriptCallStack> stack = createScriptCallStack(10); | 704 RefPtrWillBeRawPtr<ScriptCallStack> stack = createScriptCallStack(10); |
705 if (!stack) | 705 if (!stack) |
706 return jsonArray.release(); | 706 return jsonArray.release(); |
707 for (size_t i = 0; i < stack->size(); i++) | 707 for (size_t i = 0; i < stack->size(); i++) |
708 jsonArray->pushString(stack->at(i).functionName()); | 708 jsonArray->pushString(stack->at(i).functionName()); |
709 return jsonArray.release(); | 709 return jsonArray.release(); |
710 } | 710 } |
711 | 711 |
712 PassRefPtr<JSONObject> jsonObjectForStyleInvalidation(unsigned nodeCount, const
Node* rootNode) | 712 PassRefPtr<JSONObject> jsonObjectForStyleInvalidation(unsigned nodeCount, const
Node* rootNode) |
713 { | 713 { |
714 RefPtr<JSONObject> jsonObject = JSONObject::create(); | 714 RefPtr<JSONObject> jsonObject = JSONObject::create(); |
(...skipping 1859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2574 node->showTreeForThis(); | 2574 node->showTreeForThis(); |
2575 } | 2575 } |
2576 | 2576 |
2577 void showNodePath(const WebCore::Node* node) | 2577 void showNodePath(const WebCore::Node* node) |
2578 { | 2578 { |
2579 if (node) | 2579 if (node) |
2580 node->showNodePathForThis(); | 2580 node->showNodePathForThis(); |
2581 } | 2581 } |
2582 | 2582 |
2583 #endif | 2583 #endif |
OLD | NEW |