| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 class TransformSource; | 164 class TransformSource; |
| 165 #endif | 165 #endif |
| 166 | 166 |
| 167 struct AnnotatedRegionValue; | 167 struct AnnotatedRegionValue; |
| 168 | 168 |
| 169 #if ENABLE(TOUCH_EVENTS) | 169 #if ENABLE(TOUCH_EVENTS) |
| 170 class Touch; | 170 class Touch; |
| 171 class TouchList; | 171 class TouchList; |
| 172 #endif | 172 #endif |
| 173 | 173 |
| 174 #if ENABLE(MICRODATA) | |
| 175 class MicroDataItemList; | |
| 176 #endif | |
| 177 | |
| 178 #if ENABLE(LINK_PRERENDER) | 174 #if ENABLE(LINK_PRERENDER) |
| 179 class Prerenderer; | 175 class Prerenderer; |
| 180 #endif | 176 #endif |
| 181 | 177 |
| 182 #if ENABLE(FONT_LOAD_EVENTS) | 178 #if ENABLE(FONT_LOAD_EVENTS) |
| 183 class FontLoader; | 179 class FontLoader; |
| 184 #endif | 180 #endif |
| 185 | 181 |
| 186 typedef int ExceptionCode; | 182 typedef int ExceptionCode; |
| 187 | 183 |
| (...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1091 #if ENABLE(TOUCH_EVENTS) | 1087 #if ENABLE(TOUCH_EVENTS) |
| 1092 void didRemoveEventTargetNode(Node*); | 1088 void didRemoveEventTargetNode(Node*); |
| 1093 #endif | 1089 #endif |
| 1094 | 1090 |
| 1095 #if ENABLE(TOUCH_EVENTS) | 1091 #if ENABLE(TOUCH_EVENTS) |
| 1096 const TouchEventTargetSet* touchEventTargets() const { return m_touchEventTa
rgets.get(); } | 1092 const TouchEventTargetSet* touchEventTargets() const { return m_touchEventTa
rgets.get(); } |
| 1097 #else | 1093 #else |
| 1098 const TouchEventTargetSet* touchEventTargets() const { return 0; } | 1094 const TouchEventTargetSet* touchEventTargets() const { return 0; } |
| 1099 #endif | 1095 #endif |
| 1100 | 1096 |
| 1101 #if ENABLE(MICRODATA) | |
| 1102 PassRefPtr<NodeList> getItems(const String& typeNames); | |
| 1103 #endif | |
| 1104 | |
| 1105 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; } | 1097 bool isInDocumentWrite() { return m_writeRecursionDepth > 0; } |
| 1106 | 1098 |
| 1107 void suspendScheduledTasks(ActiveDOMObject::ReasonForSuspension); | 1099 void suspendScheduledTasks(ActiveDOMObject::ReasonForSuspension); |
| 1108 void resumeScheduledTasks(); | 1100 void resumeScheduledTasks(); |
| 1109 | 1101 |
| 1110 IntSize viewportSize() const; | 1102 IntSize viewportSize() const; |
| 1111 | 1103 |
| 1112 #if ENABLE(CSS_DEVICE_ADAPTATION) | 1104 #if ENABLE(CSS_DEVICE_ADAPTATION) |
| 1113 IntSize initialViewportSize() const; | 1105 IntSize initialViewportSize() const; |
| 1114 #endif | 1106 #endif |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1599 trackForDebugging(); | 1591 trackForDebugging(); |
| 1600 #endif | 1592 #endif |
| 1601 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1593 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
| 1602 } | 1594 } |
| 1603 | 1595 |
| 1604 Node* eventTargetNodeForDocument(Document*); | 1596 Node* eventTargetNodeForDocument(Document*); |
| 1605 | 1597 |
| 1606 } // namespace WebCore | 1598 } // namespace WebCore |
| 1607 | 1599 |
| 1608 #endif // Document_h | 1600 #endif // Document_h |
| OLD | NEW |