| 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 5139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5150 m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationS
tartTime); | 5150 m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationS
tartTime); |
| 5151 } | 5151 } |
| 5152 | 5152 |
| 5153 ScriptedIdleTaskController& Document::ensureScriptedIdleTaskController() | 5153 ScriptedIdleTaskController& Document::ensureScriptedIdleTaskController() |
| 5154 { | 5154 { |
| 5155 if (!m_scriptedIdleTaskController) | 5155 if (!m_scriptedIdleTaskController) |
| 5156 m_scriptedIdleTaskController = ScriptedIdleTaskController::create(this); | 5156 m_scriptedIdleTaskController = ScriptedIdleTaskController::create(this); |
| 5157 return *m_scriptedIdleTaskController; | 5157 return *m_scriptedIdleTaskController; |
| 5158 } | 5158 } |
| 5159 | 5159 |
| 5160 int Document::requestIdleCallback(IdleRequestCallback* callback, double timeoutM
illis) | 5160 int Document::requestIdleCallback(IdleRequestCallback* callback, const IdleReque
stOptions& options) |
| 5161 { | 5161 { |
| 5162 return ensureScriptedIdleTaskController().registerCallback(callback, timeout
Millis); | 5162 return ensureScriptedIdleTaskController().registerCallback(callback, options
); |
| 5163 } | 5163 } |
| 5164 | 5164 |
| 5165 void Document::cancelIdleCallback(int id) | 5165 void Document::cancelIdleCallback(int id) |
| 5166 { | 5166 { |
| 5167 if (!m_scriptedIdleTaskController) | 5167 if (!m_scriptedIdleTaskController) |
| 5168 return; | 5168 return; |
| 5169 m_scriptedIdleTaskController->cancelCallback(id); | 5169 m_scriptedIdleTaskController->cancelCallback(id); |
| 5170 } | 5170 } |
| 5171 | 5171 |
| 5172 PassRefPtrWillBeRawPtr<Touch> Document::createTouch(DOMWindow* window, EventTarg
et* target, int identifier, double pageX, double pageY, double screenX, double s
creenY, double radiusX, double radiusY, float rotationAngle, float force) const | 5172 PassRefPtrWillBeRawPtr<Touch> Document::createTouch(DOMWindow* window, EventTarg
et* target, int identifier, double pageX, double pageY, double screenX, double s
creenY, double radiusX, double radiusY, float rotationAngle, float force) const |
| (...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5744 #ifndef NDEBUG | 5744 #ifndef NDEBUG |
| 5745 using namespace blink; | 5745 using namespace blink; |
| 5746 void showLiveDocumentInstances() | 5746 void showLiveDocumentInstances() |
| 5747 { | 5747 { |
| 5748 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 5748 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
| 5749 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5749 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 5750 for (Document* document : set) | 5750 for (Document* document : set) |
| 5751 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5751 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
| 5752 } | 5752 } |
| 5753 #endif | 5753 #endif |
| OLD | NEW |