| 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 17 matching lines...) Expand all Loading... |
| 28 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 28 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
| 29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
| 30 #include "core/dom/MutationObserver.h" | 30 #include "core/dom/MutationObserver.h" |
| 31 #include "core/dom/SimulatedClickOptions.h" | 31 #include "core/dom/SimulatedClickOptions.h" |
| 32 #include "core/dom/StyleChangeReason.h" | 32 #include "core/dom/StyleChangeReason.h" |
| 33 #include "core/dom/TreeScope.h" | 33 #include "core/dom/TreeScope.h" |
| 34 #include "core/dom/TreeShared.h" | 34 #include "core/dom/TreeShared.h" |
| 35 #include "core/editing/EditingBoundary.h" | 35 #include "core/editing/EditingBoundary.h" |
| 36 #include "core/events/EventTarget.h" | 36 #include "core/events/EventTarget.h" |
| 37 #include "core/inspector/InspectorCounters.h" | 37 #include "core/inspector/InspectorCounters.h" |
| 38 #include "core/layout/style/ComputedStyleConstants.h" | 38 #include "core/style/ComputedStyleConstants.h" |
| 39 #include "platform/geometry/LayoutRect.h" | 39 #include "platform/geometry/LayoutRect.h" |
| 40 #include "platform/heap/Handle.h" | 40 #include "platform/heap/Handle.h" |
| 41 #include "platform/weborigin/KURLHash.h" | 41 #include "platform/weborigin/KURLHash.h" |
| 42 #include "wtf/Forward.h" | 42 #include "wtf/Forward.h" |
| 43 | 43 |
| 44 // This needs to be here because Document.h also depends on it. | 44 // This needs to be here because Document.h also depends on it. |
| 45 #define DUMP_NODE_STATISTICS 0 | 45 #define DUMP_NODE_STATISTICS 0 |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 } // namespace blink | 906 } // namespace blink |
| 907 | 907 |
| 908 #ifndef NDEBUG | 908 #ifndef NDEBUG |
| 909 // Outside the WebCore namespace for ease of invocation from gdb. | 909 // Outside the WebCore namespace for ease of invocation from gdb. |
| 910 void showNode(const blink::Node*); | 910 void showNode(const blink::Node*); |
| 911 void showTree(const blink::Node*); | 911 void showTree(const blink::Node*); |
| 912 void showNodePath(const blink::Node*); | 912 void showNodePath(const blink::Node*); |
| 913 #endif | 913 #endif |
| 914 | 914 |
| 915 #endif // Node_h | 915 #endif // Node_h |
| OLD | NEW |