| 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-2011, 2014 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 class PlatformWheelEvent; | 73 class PlatformWheelEvent; |
| 74 class QualifiedName; | 74 class QualifiedName; |
| 75 class RadioNodeList; | 75 class RadioNodeList; |
| 76 class RegisteredEventListener; | 76 class RegisteredEventListener; |
| 77 class RenderBox; | 77 class RenderBox; |
| 78 class RenderBoxModelObject; | 78 class RenderBoxModelObject; |
| 79 class RenderObject; | 79 class RenderObject; |
| 80 class RenderStyle; | 80 class RenderStyle; |
| 81 class SVGQualifiedName; | 81 class SVGQualifiedName; |
| 82 class ShadowRoot; | 82 class ShadowRoot; |
| 83 class StaticNodeList; | 83 template <typename NodeType> class StaticNodeTypeList; |
| 84 typedef StaticNodeTypeList<Node> StaticNodeList; |
| 84 class TagCollection; | 85 class TagCollection; |
| 85 class Text; | 86 class Text; |
| 86 class TouchEvent; | 87 class TouchEvent; |
| 87 class WeakNodeMap; | 88 class WeakNodeMap; |
| 88 | 89 |
| 89 const int nodeStyleChangeShift = 19; | 90 const int nodeStyleChangeShift = 19; |
| 90 | 91 |
| 91 enum StyleChangeType { | 92 enum StyleChangeType { |
| 92 NoStyleChange = 0, | 93 NoStyleChange = 0, |
| 93 LocalStyleChange = 1 << nodeStyleChangeShift, | 94 LocalStyleChange = 1 << nodeStyleChangeShift, |
| (...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 } // namespace blink | 884 } // namespace blink |
| 884 | 885 |
| 885 #ifndef NDEBUG | 886 #ifndef NDEBUG |
| 886 // Outside the WebCore namespace for ease of invocation from gdb. | 887 // Outside the WebCore namespace for ease of invocation from gdb. |
| 887 void showNode(const blink::Node*); | 888 void showNode(const blink::Node*); |
| 888 void showTree(const blink::Node*); | 889 void showTree(const blink::Node*); |
| 889 void showNodePath(const blink::Node*); | 890 void showNodePath(const blink::Node*); |
| 890 #endif | 891 #endif |
| 891 | 892 |
| 892 #endif | 893 #endif |
| OLD | NEW |