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, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 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) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
(...skipping 5186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5197 | 5197 |
5198 void Document::cancelAnimationFrame(int id) | 5198 void Document::cancelAnimationFrame(int id) |
5199 { | 5199 { |
5200 if (!m_scriptedAnimationController) | 5200 if (!m_scriptedAnimationController) |
5201 return; | 5201 return; |
5202 m_scriptedAnimationController->cancelCallback(id); | 5202 m_scriptedAnimationController->cancelCallback(id); |
5203 } | 5203 } |
5204 | 5204 |
5205 void Document::serviceScriptedAnimations(double monotonicAnimationStartTime) | 5205 void Document::serviceScriptedAnimations(double monotonicAnimationStartTime) |
5206 { | 5206 { |
5207 WTF_LOG(ScriptedAnimationController, "Document::serviceScriptedAnimations: c
ontroller = %d", | |
5208 m_scriptedAnimationController ? 1 : 0); | |
5209 if (!m_scriptedAnimationController) | 5207 if (!m_scriptedAnimationController) |
5210 return; | 5208 return; |
5211 m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationS
tartTime); | 5209 m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationS
tartTime); |
5212 } | 5210 } |
5213 | 5211 |
5214 PassRefPtrWillBeRawPtr<Touch> Document::createTouch(LocalDOMWindow* window, Even
tTarget* target, int identifier, double pageX, double pageY, double screenX, dou
ble screenY, double radiusX, double radiusY, float rotationAngle, float force) c
onst | 5212 PassRefPtrWillBeRawPtr<Touch> Document::createTouch(LocalDOMWindow* window, Even
tTarget* target, int identifier, double pageX, double pageY, double screenX, dou
ble screenY, double radiusX, double radiusY, float rotationAngle, float force) c
onst |
5215 { | 5213 { |
5216 // Match behavior from when these types were integers, and avoid surprises f
rom someone explicitly | 5214 // Match behavior from when these types were integers, and avoid surprises f
rom someone explicitly |
5217 // passing Infinity/NaN. | 5215 // passing Infinity/NaN. |
5218 if (!std::isfinite(pageX)) | 5216 if (!std::isfinite(pageX)) |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5827 using namespace blink; | 5825 using namespace blink; |
5828 void showLiveDocumentInstances() | 5826 void showLiveDocumentInstances() |
5829 { | 5827 { |
5830 WeakDocumentSet& set = liveDocumentSet(); | 5828 WeakDocumentSet& set = liveDocumentSet(); |
5831 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5829 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5832 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { | 5830 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { |
5833 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); | 5831 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); |
5834 } | 5832 } |
5835 } | 5833 } |
5836 #endif | 5834 #endif |
OLD | NEW |