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

Unified Diff: third_party/WebKit/Source/core/page/scrolling/TopDocumentRootScrollerController.h

Issue 2443613002: Rename classes related to top controls (Closed)
Patch Set: fix test Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/page/scrolling/TopDocumentRootScrollerController.h
diff --git a/third_party/WebKit/Source/core/page/scrolling/TopDocumentRootScrollerController.h b/third_party/WebKit/Source/core/page/scrolling/TopDocumentRootScrollerController.h
index 162d8eecaa1729bd7c8b6b27625f067c9976d2c6..31e4428462c2e4cd1f0443201ff34dd8f7df0d6b 100644
--- a/third_party/WebKit/Source/core/page/scrolling/TopDocumentRootScrollerController.h
+++ b/third_party/WebKit/Source/core/page/scrolling/TopDocumentRootScrollerController.h
@@ -21,8 +21,8 @@ class ViewportScrollCallback;
// This class manages the the page level aspects of the root scroller. That
// is, given all the iframes on a page and their individual root scrollers,
// this class will determine which ultimate Element should be used as the root
-// scroller and ensures that Element is used to scroll top controls and provide
-// overscroll effects.
+// scroller and ensures that Element is used to scroll browser controls and
+// provide overscroll effects.
// TODO(bokan): This class is currently OOPIF unaware. crbug.com/642378.
class CORE_EXPORT TopDocumentRootScrollerController
: public GarbageCollected<TopDocumentRootScrollerController> {
@@ -36,7 +36,7 @@ class CORE_EXPORT TopDocumentRootScrollerController
void didUpdateCompositing();
// This method needs to be called to create a ViewportScrollCallback that
- // will be used to apply viewport scrolling actions like top controls
+ // will be used to apply viewport scrolling actions like browser controls
// movement and overscroll glow.
void initializeViewportScrollCallback(RootFrameViewport&);
@@ -74,13 +74,13 @@ class CORE_EXPORT TopDocumentRootScrollerController
void setNeedsCompositingInputsUpdateOnGlobalRootScroller();
- // The apply-scroll callback that moves top controls and produces
+ // The apply-scroll callback that moves browser controls and produces
// overscroll effects. This class makes sure this callback is set on the
// appropriate root scroller element.
Member<ViewportScrollCallback> m_viewportApplyScroll;
// The page level root scroller. i.e. The actual element for which
- // scrolling should move top controls and produce overscroll glow. Once an
+ // scrolling should move browser controls and produce overscroll glow. Once an
// m_viewportApplyScroll has been created, it will always be set on this
// Element.
WeakMember<Element> m_globalRootScroller;

Powered by Google App Engine
This is Rietveld 408576698