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