| 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 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 Document* templateDocumentHost() { return m_templateDocumentHost; } | 1106 Document* templateDocumentHost() { return m_templateDocumentHost; } |
| 1107 | 1107 |
| 1108 void didAssociateFormControl(Element*); | 1108 void didAssociateFormControl(Element*); |
| 1109 | 1109 |
| 1110 virtual void addConsoleMessage(MessageSource, MessageLevel, const String& me
ssage, unsigned long requestIdentifier = 0); | 1110 virtual void addConsoleMessage(MessageSource, MessageLevel, const String& me
ssage, unsigned long requestIdentifier = 0); |
| 1111 | 1111 |
| 1112 virtual const SecurityOrigin* topOrigin() const OVERRIDE; | 1112 virtual const SecurityOrigin* topOrigin() const OVERRIDE; |
| 1113 | 1113 |
| 1114 PassRefPtr<FontLoader> fontloader(); | 1114 PassRefPtr<FontLoader> fontloader(); |
| 1115 | 1115 |
| 1116 virtual void visitWith(Visitor*) const OVERRIDE; | 1116 virtual void adjustAndMark(Visitor*) const OVERRIDE; |
| 1117 | 1117 |
| 1118 using Node::trace; | 1118 using Node::trace; |
| 1119 | 1119 |
| 1120 void clearWeakPointers(Visitor*); | 1120 void clearWeakPointers(Visitor*); |
| 1121 | 1121 |
| 1122 virtual void trace(Visitor*) OVERRIDE; | 1122 virtual void trace(Visitor*) OVERRIDE; |
| 1123 virtual bool isAlive(Visitor* visitor) { return visitor->isMarked(this); } | 1123 virtual bool isAlive(Visitor* visitor) { return visitor->isMarked(this); } |
| 1124 | 1124 |
| 1125 protected: | 1125 protected: |
| 1126 Document(Frame*, const KURL&, bool isXHTML, bool isHTML); | 1126 Document(Frame*, const KURL&, bool isXHTML, bool isHTML); |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1504 trackForDebugging(); | 1504 trackForDebugging(); |
| 1505 #endif | 1505 #endif |
| 1506 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1506 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
| 1507 } | 1507 } |
| 1508 | 1508 |
| 1509 Node* eventTargetNodeForDocument(Document*); | 1509 Node* eventTargetNodeForDocument(Document*); |
| 1510 | 1510 |
| 1511 } // namespace WebCore | 1511 } // namespace WebCore |
| 1512 | 1512 |
| 1513 #endif // Document_h | 1513 #endif // Document_h |
| OLD | NEW |