Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: Source/core/dom/Document.cpp

Issue 750013004: Added experimental tilt and tiltDirection to the Touch interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Keep eventSender.setTouchPointTilt under "if" + added 4th argument (set_state_moved) Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 5076 matching lines...) Expand 10 before | Expand all | Expand 10 after
5087 m_scriptedAnimationController->cancelCallback(id); 5087 m_scriptedAnimationController->cancelCallback(id);
5088 } 5088 }
5089 5089
5090 void Document::serviceScriptedAnimations(double monotonicAnimationStartTime) 5090 void Document::serviceScriptedAnimations(double monotonicAnimationStartTime)
5091 { 5091 {
5092 if (!m_scriptedAnimationController) 5092 if (!m_scriptedAnimationController)
5093 return; 5093 return;
5094 m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationS tartTime); 5094 m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationS tartTime);
5095 } 5095 }
5096 5096
5097 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 5097 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, float tilt, float tiltDirection) const
5098 { 5098 {
5099 // Match behavior from when these types were integers, and avoid surprises f rom someone explicitly 5099 // Match behavior from when these types were integers, and avoid surprises f rom someone explicitly
5100 // passing Infinity/NaN. 5100 // passing Infinity/NaN.
5101 if (!std::isfinite(pageX)) 5101 if (!std::isfinite(pageX))
5102 pageX = 0; 5102 pageX = 0;
5103 if (!std::isfinite(pageY)) 5103 if (!std::isfinite(pageY))
5104 pageY = 0; 5104 pageY = 0;
5105 if (!std::isfinite(screenX)) 5105 if (!std::isfinite(screenX))
5106 screenX = 0; 5106 screenX = 0;
5107 if (!std::isfinite(screenY)) 5107 if (!std::isfinite(screenY))
5108 screenY = 0; 5108 screenY = 0;
5109 if (!std::isfinite(radiusX)) 5109 if (!std::isfinite(radiusX))
5110 radiusX = 0; 5110 radiusX = 0;
5111 if (!std::isfinite(radiusY)) 5111 if (!std::isfinite(radiusY))
5112 radiusY = 0; 5112 radiusY = 0;
5113 if (!std::isfinite(rotationAngle)) 5113 if (!std::isfinite(rotationAngle))
5114 rotationAngle = 0; 5114 rotationAngle = 0;
5115 if (!std::isfinite(force)) 5115 if (!std::isfinite(force))
5116 force = 0; 5116 force = 0;
5117 5117
5118 // FIXME: It's not clear from the documentation at 5118 // FIXME: It's not clear from the documentation at
5119 // http://developer.apple.com/library/safari/#documentation/UserExperience/R eference/DocumentAdditionsReference/DocumentAdditions/DocumentAdditions.html 5119 // http://developer.apple.com/library/safari/#documentation/UserExperience/R eference/DocumentAdditionsReference/DocumentAdditions/DocumentAdditions.html
5120 // when this method should throw and nor is it by inspection of iOS behavior . It would be nice to verify any cases where it throws under iOS 5120 // when this method should throw and nor is it by inspection of iOS behavior . It would be nice to verify any cases where it throws under iOS
5121 // and implement them here. See https://bugs.webkit.org/show_bug.cgi?id=4781 9 5121 // and implement them here. See https://bugs.webkit.org/show_bug.cgi?id=4781 9
5122 LocalFrame* frame = window && window->isLocalDOMWindow() ? toLocalDOMWindow( window)->frame() : this->frame(); 5122 LocalFrame* frame = window && window->isLocalDOMWindow() ? toLocalDOMWindow( window)->frame() : this->frame();
5123 return Touch::create(frame, target, identifier, FloatPoint(screenX, screenY) , FloatPoint(pageX, pageY), FloatSize(radiusX, radiusY), rotationAngle, force); 5123 return Touch::create(frame, target, identifier, FloatPoint(screenX, screenY) , FloatPoint(pageX, pageY), FloatSize(radiusX, radiusY), rotationAngle, force, t ilt, tiltDirection);
5124 } 5124 }
5125 5125
5126 PassRefPtrWillBeRawPtr<TouchList> Document::createTouchList(WillBeHeapVector<Ref PtrWillBeMember<Touch>>& touches) const 5126 PassRefPtrWillBeRawPtr<TouchList> Document::createTouchList(WillBeHeapVector<Ref PtrWillBeMember<Touch>>& touches) const
5127 { 5127 {
5128 return TouchList::adopt(touches); 5128 return TouchList::adopt(touches);
5129 } 5129 }
5130 5130
5131 DocumentLoader* Document::loader() const 5131 DocumentLoader* Document::loader() const
5132 { 5132 {
5133 if (!m_frame) 5133 if (!m_frame)
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
5723 #ifndef NDEBUG 5723 #ifndef NDEBUG
5724 using namespace blink; 5724 using namespace blink;
5725 void showLiveDocumentInstances() 5725 void showLiveDocumentInstances()
5726 { 5726 {
5727 WeakDocumentSet& set = liveDocumentSet(); 5727 WeakDocumentSet& set = liveDocumentSet();
5728 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5728 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5729 for (Document* document : set) 5729 for (Document* document : set)
5730 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5730 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5731 } 5731 }
5732 #endif 5732 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698