| 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 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 friend class Node; | 1141 friend class Node; |
| 1142 friend class IgnoreDestructiveWriteCountIncrementer; | 1142 friend class IgnoreDestructiveWriteCountIncrementer; |
| 1143 | 1143 |
| 1144 void detachParser(); | 1144 void detachParser(); |
| 1145 | 1145 |
| 1146 typedef void (*ArgumentsCallback)(const String& keyString, const String& val
ueString, Handle<Document>, void* data); | 1146 typedef void (*ArgumentsCallback)(const String& keyString, const String& val
ueString, Handle<Document>, void* data); |
| 1147 void processArguments(const String& features, void* data, ArgumentsCallback)
; | 1147 void processArguments(const String& features, void* data, ArgumentsCallback)
; |
| 1148 | 1148 |
| 1149 virtual bool isDocument() const OVERRIDE { return true; } | 1149 virtual bool isDocument() const OVERRIDE { return true; } |
| 1150 | 1150 |
| 1151 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang
e = 0, Node* afterChange = 0, int childCountDelta = 0); | 1151 virtual void childrenChanged(bool changedByParser = false, const Handle<Node
>& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC
ountDelta = 0); |
| 1152 | 1152 |
| 1153 virtual String nodeName() const; | 1153 virtual String nodeName() const; |
| 1154 virtual NodeType nodeType() const; | 1154 virtual NodeType nodeType() const; |
| 1155 virtual bool childTypeAllowed(NodeType) const; | 1155 virtual bool childTypeAllowed(NodeType) const; |
| 1156 virtual PassRefPtr<Node> cloneNode(bool deep); | 1156 virtual PassRefPtr<Node> cloneNode(bool deep); |
| 1157 | 1157 |
| 1158 virtual void refScriptExecutionContext() { ref(); } | 1158 virtual void refScriptExecutionContext() { ref(); } |
| 1159 virtual void derefScriptExecutionContext() { deref(); } | 1159 virtual void derefScriptExecutionContext() { deref(); } |
| 1160 | 1160 |
| 1161 virtual const KURL& virtualURL() const; // Same as url(), but needed for Scr
iptExecutionContext to implement it without a performance loss for direct calls. | 1161 virtual const KURL& virtualURL() const; // Same as url(), but needed for Scr
iptExecutionContext to implement it without a performance loss for direct calls. |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1533 trackForDebugging(); | 1533 trackForDebugging(); |
| 1534 #endif | 1534 #endif |
| 1535 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1535 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
| 1536 } | 1536 } |
| 1537 | 1537 |
| 1538 Node* eventTargetNodeForDocument(Handle<Document>); | 1538 Node* eventTargetNodeForDocument(Handle<Document>); |
| 1539 | 1539 |
| 1540 } // namespace WebCore | 1540 } // namespace WebCore |
| 1541 | 1541 |
| 1542 #endif // Document_h | 1542 #endif // Document_h |
| OLD | NEW |