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

Side by Side Diff: third_party/WebKit/Source/core/dom/Element.cpp

Issue 1625473002: compositor-worker: blink->cc plumbing Base URL: https://chromium.googlesource.com/chromium/src.git@upstream-compositor-worker
Patch Set: Merge with landing of https://codereview.chromium.org/1599673002/ on master Created 4 years, 10 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 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * (C) 2007 David Smith (catfish.man@gmail.com) 6 * (C) 2007 David Smith (catfish.man@gmail.com)
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
8 * (C) 2007 Eric Seidel (eric@webkit.org) 8 * (C) 2007 Eric Seidel (eric@webkit.org)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 #include "core/page/scrolling/ScrollCustomizationCallbacks.h" 118 #include "core/page/scrolling/ScrollCustomizationCallbacks.h"
119 #include "core/page/scrolling/ScrollState.h" 119 #include "core/page/scrolling/ScrollState.h"
120 #include "core/page/scrolling/ScrollStateCallback.h" 120 #include "core/page/scrolling/ScrollStateCallback.h"
121 #include "core/paint/PaintLayer.h" 121 #include "core/paint/PaintLayer.h"
122 #include "core/svg/SVGDocumentExtensions.h" 122 #include "core/svg/SVGDocumentExtensions.h"
123 #include "core/svg/SVGElement.h" 123 #include "core/svg/SVGElement.h"
124 #include "platform/EventDispatchForbiddenScope.h" 124 #include "platform/EventDispatchForbiddenScope.h"
125 #include "platform/RuntimeEnabledFeatures.h" 125 #include "platform/RuntimeEnabledFeatures.h"
126 #include "platform/UserGestureIndicator.h" 126 #include "platform/UserGestureIndicator.h"
127 #include "platform/graphics/CompositorMutableProperties.h" 127 #include "platform/graphics/CompositorMutableProperties.h"
128 #include "platform/graphics/CompositorMutation.h"
128 #include "platform/scroll/ScrollableArea.h" 129 #include "platform/scroll/ScrollableArea.h"
129 #include "platform/transforms/MatrixTransformOperation.h" 130 #include "platform/transforms/MatrixTransformOperation.h"
130 #include "wtf/BitVector.h" 131 #include "wtf/BitVector.h"
131 #include "wtf/HashFunctions.h" 132 #include "wtf/HashFunctions.h"
132 #include "wtf/text/CString.h" 133 #include "wtf/text/CString.h"
133 #include "wtf/text/StringBuilder.h" 134 #include "wtf/text/StringBuilder.h"
134 #include "wtf/text/TextPosition.h" 135 #include "wtf/text/TextPosition.h"
135 136
136 namespace blink { 137 namespace blink {
137 138
(...skipping 3536 matching lines...) Expand 10 before | Expand all | Expand 10 after
3674 { 3675 {
3675 #if ENABLE(OILPAN) 3676 #if ENABLE(OILPAN)
3676 if (hasRareData()) 3677 if (hasRareData())
3677 visitor->trace(elementRareData()); 3678 visitor->trace(elementRareData());
3678 visitor->trace(m_elementData); 3679 visitor->trace(m_elementData);
3679 #endif 3680 #endif
3680 ContainerNode::trace(visitor); 3681 ContainerNode::trace(visitor);
3681 } 3682 }
3682 3683
3683 } // namespace blink 3684 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMMatrix.cpp ('k') | third_party/WebKit/Source/core/loader/EmptyClients.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698