summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/page/scrolling/root_scroller_controller.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/page/scrolling/root_scroller_controller.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/page/scrolling/root_scroller_controller.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/page/scrolling/root_scroller_controller.cc b/chromium/third_party/blink/renderer/core/page/scrolling/root_scroller_controller.cc
index 732536e29f2..c235d4199aa 100644
--- a/chromium/third_party/blink/renderer/core/page/scrolling/root_scroller_controller.cc
+++ b/chromium/third_party/blink/renderer/core/page/scrolling/root_scroller_controller.cc
@@ -99,7 +99,7 @@ PaintLayerScrollableArea* GetScrollableArea(const Element& element) {
RootScrollerController::RootScrollerController(Document& document)
: document_(&document), effective_root_scroller_(&document) {}
-void RootScrollerController::Trace(blink::Visitor* visitor) {
+void RootScrollerController::Trace(Visitor* visitor) {
visitor->Trace(document_);
visitor->Trace(root_scroller_);
visitor->Trace(effective_root_scroller_);
@@ -312,7 +312,7 @@ bool RootScrollerController::IsValidImplicit(const Element& element) const {
// The LayoutView is allowed to have a clip (since its clip is resized by
// the URL bar movement). Test it for scrolling so that we only promote if
// we know we won't block scrolling the main document.
- if (ancestor->IsLayoutView()) {
+ if (IsA<LayoutView>(ancestor)) {
const ComputedStyle* ancestor_style = ancestor->Style();
DCHECK(ancestor_style);