| 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 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 void exitPointerLock(); | 941 void exitPointerLock(); |
| 942 Element* pointerLockElement() const; | 942 Element* pointerLockElement() const; |
| 943 | 943 |
| 944 // Used to allow element that loads data without going through a FrameLoader
to delay the 'load' event. | 944 // Used to allow element that loads data without going through a FrameLoader
to delay the 'load' event. |
| 945 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } | 945 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } |
| 946 void decrementLoadEventDelayCount(); | 946 void decrementLoadEventDelayCount(); |
| 947 void checkLoadEventSoon(); | 947 void checkLoadEventSoon(); |
| 948 bool isDelayingLoadEvent(); | 948 bool isDelayingLoadEvent(); |
| 949 void loadPluginsSoon(); | 949 void loadPluginsSoon(); |
| 950 | 950 |
| 951 PassRefPtrWillBeRawPtr<Touch> createTouch(DOMWindow*, EventTarget*, int iden
tifier, double pageX, double pageY, double screenX, double screenY, double radiu
sX, double radiusY, float rotationAngle, float force) const; | 951 PassRefPtrWillBeRawPtr<Touch> createTouch(DOMWindow*, EventTarget*, int iden
tifier, double pageX, double pageY, double screenX, double screenY, double radiu
sX, double radiusY, float rotationAngle, float force, float tilt, float tiltDire
ction) const; |
| 952 PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWil
lBeMember<Touch>>&) const; | 952 PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWil
lBeMember<Touch>>&) const; |
| 953 | 953 |
| 954 const DocumentTiming& timing() const { return m_documentTiming; } | 954 const DocumentTiming& timing() const { return m_documentTiming; } |
| 955 | 955 |
| 956 int requestAnimationFrame(RequestAnimationFrameCallback*); | 956 int requestAnimationFrame(RequestAnimationFrameCallback*); |
| 957 void cancelAnimationFrame(int id); | 957 void cancelAnimationFrame(int id); |
| 958 void serviceScriptedAnimations(double monotonicAnimationStartTime); | 958 void serviceScriptedAnimations(double monotonicAnimationStartTime); |
| 959 | 959 |
| 960 virtual EventTarget* errorEventTarget() override final; | 960 virtual EventTarget* errorEventTarget() override final; |
| 961 virtual void logExceptionToConsole(const String& errorMessage, int scriptId,
const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawP
tr<ScriptCallStack>) override final; | 961 virtual void logExceptionToConsole(const String& errorMessage, int scriptId,
const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawP
tr<ScriptCallStack>) override final; |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1439 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1440 | 1440 |
| 1441 } // namespace blink | 1441 } // namespace blink |
| 1442 | 1442 |
| 1443 #ifndef NDEBUG | 1443 #ifndef NDEBUG |
| 1444 // Outside the WebCore namespace for ease of invocation from gdb. | 1444 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1445 void showLiveDocumentInstances(); | 1445 void showLiveDocumentInstances(); |
| 1446 #endif | 1446 #endif |
| 1447 | 1447 |
| 1448 #endif // Document_h | 1448 #endif // Document_h |
| OLD | NEW |