| Index: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
|
| index db45beb8b718d176e75e4351537a0803dc379279..8277fc7299bbb3cef8fa2f99f859687579f4a706 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
|
| @@ -45,6 +45,7 @@
|
|
|
| #include "core/css/PseudoStyleRequest.h"
|
| #include "core/dom/AXObjectCache.h"
|
| +#include "core/dom/DOMNodeIds.h"
|
| #include "core/dom/Node.h"
|
| #include "core/dom/shadow/ShadowRoot.h"
|
| #include "core/editing/FrameSelection.h"
|
| @@ -1638,6 +1639,11 @@ void PaintLayerScrollableArea::ScrollbarManager::destroyScrollbar(ScrollbarOrien
|
| scrollbar = nullptr;
|
| }
|
|
|
| +uint64_t PaintLayerScrollableArea::id() const
|
| +{
|
| + return DOMNodeIds::idForNode(box().node());
|
| +}
|
| +
|
| DEFINE_TRACE(PaintLayerScrollableArea::ScrollbarManager)
|
| {
|
| visitor->trace(m_scrollableArea);
|
|
|