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

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

Issue 185413023: Oilpan: move Touch related objects to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Avoid MSVC local class member function restriction Created 6 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
« no previous file with comments | « Source/bindings/v8/V8Binding.h ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "core/dom/QualifiedName.h" 43 #include "core/dom/QualifiedName.h"
44 #include "core/dom/TextLinkColors.h" 44 #include "core/dom/TextLinkColors.h"
45 #include "core/dom/TreeScope.h" 45 #include "core/dom/TreeScope.h"
46 #include "core/dom/UserActionElementSet.h" 46 #include "core/dom/UserActionElementSet.h"
47 #include "core/dom/ViewportDescription.h" 47 #include "core/dom/ViewportDescription.h"
48 #include "core/dom/custom/CustomElement.h" 48 #include "core/dom/custom/CustomElement.h"
49 #include "core/html/CollectionType.h" 49 #include "core/html/CollectionType.h"
50 #include "core/page/FocusType.h" 50 #include "core/page/FocusType.h"
51 #include "core/page/PageVisibilityState.h" 51 #include "core/page/PageVisibilityState.h"
52 #include "core/rendering/HitTestRequest.h" 52 #include "core/rendering/HitTestRequest.h"
53 #include "heap/Handle.h"
53 #include "platform/Timer.h" 54 #include "platform/Timer.h"
54 #include "platform/weborigin/KURL.h" 55 #include "platform/weborigin/KURL.h"
55 #include "platform/weborigin/ReferrerPolicy.h" 56 #include "platform/weborigin/ReferrerPolicy.h"
56 #include "wtf/HashSet.h" 57 #include "wtf/HashSet.h"
57 #include "wtf/OwnPtr.h" 58 #include "wtf/OwnPtr.h"
58 #include "wtf/PassOwnPtr.h" 59 #include "wtf/PassOwnPtr.h"
59 #include "wtf/PassRefPtr.h" 60 #include "wtf/PassRefPtr.h"
60 #include "wtf/WeakPtr.h" 61 #include "wtf/WeakPtr.h"
61 62
62 namespace WebCore { 63 namespace WebCore {
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 922
922 void webkitExitPointerLock(); 923 void webkitExitPointerLock();
923 Element* webkitPointerLockElement() const; 924 Element* webkitPointerLockElement() const;
924 925
925 // Used to allow element that loads data without going through a FrameLoader to delay the 'load' event. 926 // Used to allow element that loads data without going through a FrameLoader to delay the 'load' event.
926 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } 927 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; }
927 void decrementLoadEventDelayCount(); 928 void decrementLoadEventDelayCount();
928 bool isDelayingLoadEvent() const { return m_loadEventDelayCount; } 929 bool isDelayingLoadEvent() const { return m_loadEventDelayCount; }
929 void loadPluginsSoon(); 930 void loadPluginsSoon();
930 931
931 PassRefPtr<Touch> createTouch(DOMWindow*, EventTarget*, int identifier, int pageX, int pageY, int screenX, int screenY, int radiusX, int radiusY, float rota tionAngle, float force) const; 932 PassRefPtrWillBeRawPtr<Touch> createTouch(DOMWindow*, EventTarget*, int iden tifier, int pageX, int pageY, int screenX, int screenY, int radiusX, int radiusY , float rotationAngle, float force) const;
932 PassRefPtr<TouchList> createTouchList(Vector<RefPtr<Touch> >&) const; 933 PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWil lBeMember<Touch> >&) const;
933 934
934 const DocumentTiming& timing() const { return m_documentTiming; } 935 const DocumentTiming& timing() const { return m_documentTiming; }
935 936
936 int requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback>); 937 int requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback>);
937 void cancelAnimationFrame(int id); 938 void cancelAnimationFrame(int id);
938 void serviceScriptedAnimations(double monotonicAnimationStartTime); 939 void serviceScriptedAnimations(double monotonicAnimationStartTime);
939 940
940 virtual EventTarget* errorEventTarget() OVERRIDE FINAL; 941 virtual EventTarget* errorEventTarget() OVERRIDE FINAL;
941 virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) OVERR IDE FINAL; 942 virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) OVERR IDE FINAL;
942 943
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
1400 inline bool Node::isDocumentNode() const 1401 inline bool Node::isDocumentNode() const
1401 { 1402 {
1402 return this == document(); 1403 return this == document();
1403 } 1404 }
1404 1405
1405 Node* eventTargetNodeForDocument(Document*); 1406 Node* eventTargetNodeForDocument(Document*);
1406 1407
1407 } // namespace WebCore 1408 } // namespace WebCore
1408 1409
1409 #endif // Document_h 1410 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/bindings/v8/V8Binding.h ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698