| 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 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1101 void didRemoveWheelEventHandler(); | 1101 void didRemoveWheelEventHandler(); |
| 1102 | 1102 |
| 1103 unsigned touchEventHandlerCount() const { return m_touchEventHandlerCount; } | 1103 unsigned touchEventHandlerCount() const { return m_touchEventHandlerCount; } |
| 1104 void didAddTouchEventHandler(); | 1104 void didAddTouchEventHandler(); |
| 1105 void didRemoveTouchEventHandler(); | 1105 void didRemoveTouchEventHandler(); |
| 1106 | 1106 |
| 1107 bool visualUpdatesAllowed() const { return m_visualUpdatesAllowed; } | 1107 bool visualUpdatesAllowed() const { return m_visualUpdatesAllowed; } |
| 1108 | 1108 |
| 1109 #if ENABLE(MICRODATA) | 1109 #if ENABLE(MICRODATA) |
| 1110 PassRefPtr<NodeList> getItems(const String& typeNames); | 1110 PassRefPtr<NodeList> getItems(const String& typeNames); |
| 1111 void removeCachedMicroDataItemList(MicroDataItemList*, const String&); | |
| 1112 #endif | 1111 #endif |
| 1113 | 1112 |
| 1114 #if ENABLE(UNDO_MANAGER) | 1113 #if ENABLE(UNDO_MANAGER) |
| 1115 PassRefPtr<UndoManager> undoManager(); | 1114 PassRefPtr<UndoManager> undoManager(); |
| 1116 #endif | 1115 #endif |
| 1117 | 1116 |
| 1118 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; } | 1117 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; } |
| 1119 | 1118 |
| 1120 void suspendScheduledTasks(ActiveDOMObject::ReasonForSuspension); | 1119 void suspendScheduledTasks(ActiveDOMObject::ReasonForSuspension); |
| 1121 void resumeScheduledTasks(); | 1120 void resumeScheduledTasks(); |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1520 trackForDebugging(); | 1519 trackForDebugging(); |
| 1521 #endif | 1520 #endif |
| 1522 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1521 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
| 1523 } | 1522 } |
| 1524 | 1523 |
| 1525 Node* eventTargetNodeForDocument(Document*); | 1524 Node* eventTargetNodeForDocument(Document*); |
| 1526 | 1525 |
| 1527 } // namespace WebCore | 1526 } // namespace WebCore |
| 1528 | 1527 |
| 1529 #endif // Document_h | 1528 #endif // Document_h |
| OLD | NEW |