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 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1117 #if ENABLE(TOUCH_EVENTS) | 1117 #if ENABLE(TOUCH_EVENTS) |
1118 PassRefPtr<Touch> createTouch(DOMWindow*, EventTarget*, int identifier, int
pageX, int pageY, int screenX, int screenY, int radiusX, int radiusY, float rota
tionAngle, float force, ExceptionCode&) const; | 1118 PassRefPtr<Touch> createTouch(DOMWindow*, EventTarget*, int identifier, int
pageX, int pageY, int screenX, int screenY, int radiusX, int radiusY, float rota
tionAngle, float force, ExceptionCode&) const; |
1119 PassRefPtr<TouchList> createTouchList(ExceptionCode&) const; | 1119 PassRefPtr<TouchList> createTouchList(ExceptionCode&) const; |
1120 #endif | 1120 #endif |
1121 | 1121 |
1122 const DocumentTiming* timing() const { return &m_documentTiming; } | 1122 const DocumentTiming* timing() const { return &m_documentTiming; } |
1123 | 1123 |
1124 #if ENABLE(REQUEST_ANIMATION_FRAME) | 1124 #if ENABLE(REQUEST_ANIMATION_FRAME) |
1125 int webkitRequestAnimationFrame(PassRefPtr<RequestAnimationFrameCallback>); | 1125 int webkitRequestAnimationFrame(PassRefPtr<RequestAnimationFrameCallback>); |
1126 void webkitCancelAnimationFrame(int id); | 1126 void webkitCancelAnimationFrame(int id); |
1127 void serviceScriptedAnimations(double monotonicAnimationStartTime); | 1127 void serviceScriptedAnimations(DOMTimeStamp); |
1128 #endif | 1128 #endif |
1129 | 1129 |
1130 virtual EventTarget* errorEventTarget(); | 1130 virtual EventTarget* errorEventTarget(); |
1131 virtual void logExceptionToConsole(const String& errorMessage, const String&
sourceURL, int lineNumber, PassRefPtr<ScriptCallStack>); | 1131 virtual void logExceptionToConsole(const String& errorMessage, const String&
sourceURL, int lineNumber, PassRefPtr<ScriptCallStack>); |
1132 | 1132 |
1133 void initDNSPrefetch(); | 1133 void initDNSPrefetch(); |
1134 | 1134 |
1135 unsigned wheelEventHandlerCount() const { return m_wheelEventHandlerCount; } | 1135 unsigned wheelEventHandlerCount() const { return m_wheelEventHandlerCount; } |
1136 void didAddWheelEventHandler(); | 1136 void didAddWheelEventHandler(); |
1137 void didRemoveWheelEventHandler(); | 1137 void didRemoveWheelEventHandler(); |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1525 trackForDebugging(); | 1525 trackForDebugging(); |
1526 #endif | 1526 #endif |
1527 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1527 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
1528 } | 1528 } |
1529 | 1529 |
1530 Node* eventTargetNodeForDocument(Document*); | 1530 Node* eventTargetNodeForDocument(Document*); |
1531 | 1531 |
1532 } // namespace WebCore | 1532 } // namespace WebCore |
1533 | 1533 |
1534 #endif // Document_h | 1534 #endif // Document_h |
OLD | NEW |