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

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

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, 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 926 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 void exitPointerLock(); 937 void exitPointerLock();
938 Element* pointerLockElement() const; 938 Element* pointerLockElement() const;
939 939
940 // Used to allow element that loads data without going through a FrameLoader to delay the 'load' event. 940 // Used to allow element that loads data without going through a FrameLoader to delay the 'load' event.
941 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } 941 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; }
942 void decrementLoadEventDelayCount(); 942 void decrementLoadEventDelayCount();
943 void checkLoadEventSoon(); 943 void checkLoadEventSoon();
944 bool isDelayingLoadEvent(); 944 bool isDelayingLoadEvent();
945 void loadPluginsSoon(); 945 void loadPluginsSoon();
946 946
947 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; 947 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;
948 PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWil lBeMember<Touch>>&) const; 948 PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWil lBeMember<Touch>>&) const;
949 949
950 const DocumentTiming& timing() const { return m_documentTiming; } 950 const DocumentTiming& timing() const { return m_documentTiming; }
951 951
952 int requestAnimationFrame(RequestAnimationFrameCallback*); 952 int requestAnimationFrame(RequestAnimationFrameCallback*);
953 void cancelAnimationFrame(int id); 953 void cancelAnimationFrame(int id);
954 void serviceScriptedAnimations(double monotonicAnimationStartTime); 954 void serviceScriptedAnimations(double monotonicAnimationStartTime);
955 955
956 virtual EventTarget* errorEventTarget() override final; 956 virtual EventTarget* errorEventTarget() override final;
957 virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawP tr<ScriptCallStack>) override final; 957 virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawP tr<ScriptCallStack>) override final;
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698