| 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 28 matching lines...) Expand all Loading... |
| 39 #include "sky/engine/platform/weborigin/KURLHash.h" | 39 #include "sky/engine/platform/weborigin/KURLHash.h" |
| 40 #include "sky/engine/wtf/Forward.h" | 40 #include "sky/engine/wtf/Forward.h" |
| 41 | 41 |
| 42 // This needs to be here because Document.h also depends on it. | 42 // This needs to be here because Document.h also depends on it. |
| 43 #define DUMP_NODE_STATISTICS 0 | 43 #define DUMP_NODE_STATISTICS 0 |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class Attribute; | 47 class Attribute; |
| 48 class ContainerNode; | 48 class ContainerNode; |
| 49 class DOMSettableTokenList; | |
| 50 class Document; | 49 class Document; |
| 51 class Element; | 50 class Element; |
| 52 class Event; | 51 class Event; |
| 53 class EventDispatchMediator; | 52 class EventDispatchMediator; |
| 54 class EventListener; | 53 class EventListener; |
| 55 class ExceptionState; | 54 class ExceptionState; |
| 56 class FloatPoint; | 55 class FloatPoint; |
| 57 class LocalFrame; | 56 class LocalFrame; |
| 58 class HTMLQualifiedName; | 57 class HTMLQualifiedName; |
| 59 class IntRect; | 58 class IntRect; |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 } // namespace blink | 704 } // namespace blink |
| 706 | 705 |
| 707 #ifndef NDEBUG | 706 #ifndef NDEBUG |
| 708 // Outside the WebCore namespace for ease of invocation from gdb. | 707 // Outside the WebCore namespace for ease of invocation from gdb. |
| 709 void showNode(const blink::Node*); | 708 void showNode(const blink::Node*); |
| 710 void showTree(const blink::Node*); | 709 void showTree(const blink::Node*); |
| 711 void showNodePath(const blink::Node*); | 710 void showNodePath(const blink::Node*); |
| 712 #endif | 711 #endif |
| 713 | 712 |
| 714 #endif // SKY_ENGINE_CORE_DOM_NODE_H_ | 713 #endif // SKY_ENGINE_CORE_DOM_NODE_H_ |
| OLD | NEW |