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

Side by Side Diff: Source/core/rendering/RenderLayerScrollableArea.h

Issue 269433002: Revert of isActiveFocus() is a more meaningful name (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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/core/frame/PinchViewport.h ('k') | Source/core/rendering/RenderLayerScrollableArea.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) 2003, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu> 7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu> 8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de> 9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com> 10 * Randall Jesup <rjesup@wgate.com>
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 virtual Scrollbar* horizontalScrollbar() const OVERRIDE { return m_hBar.get( ); } 77 virtual Scrollbar* horizontalScrollbar() const OVERRIDE { return m_hBar.get( ); }
78 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_vBar.get(); } 78 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_vBar.get(); }
79 79
80 virtual GraphicsLayer* layerForScrolling() const OVERRIDE; 80 virtual GraphicsLayer* layerForScrolling() const OVERRIDE;
81 virtual GraphicsLayer* layerForHorizontalScrollbar() const OVERRIDE; 81 virtual GraphicsLayer* layerForHorizontalScrollbar() const OVERRIDE;
82 virtual GraphicsLayer* layerForVerticalScrollbar() const OVERRIDE; 82 virtual GraphicsLayer* layerForVerticalScrollbar() const OVERRIDE;
83 virtual GraphicsLayer* layerForScrollCorner() const OVERRIDE; 83 virtual GraphicsLayer* layerForScrollCorner() const OVERRIDE;
84 virtual bool usesCompositedScrolling() const OVERRIDE; 84 virtual bool usesCompositedScrolling() const OVERRIDE;
85 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE; 85 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
86 virtual void invalidateScrollCornerRect(const IntRect&) OVERRIDE; 86 virtual void invalidateScrollCornerRect(const IntRect&) OVERRIDE;
87 virtual bool isActiveFocus() const OVERRIDE; 87 virtual bool isActive() const OVERRIDE;
88 virtual bool isScrollCornerVisible() const OVERRIDE; 88 virtual bool isScrollCornerVisible() const OVERRIDE;
89 virtual IntRect scrollCornerRect() const OVERRIDE; 89 virtual IntRect scrollCornerRect() const OVERRIDE;
90 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const OVERRIDE; 90 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const OVERRIDE;
91 virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const OVERRIDE; 91 virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const OVERRIDE;
92 virtual IntPoint convertFromScrollbarToContainingView(const Scrollbar*, cons t IntPoint&) const OVERRIDE; 92 virtual IntPoint convertFromScrollbarToContainingView(const Scrollbar*, cons t IntPoint&) const OVERRIDE;
93 virtual IntPoint convertFromContainingViewToScrollbar(const Scrollbar*, cons t IntPoint&) const OVERRIDE; 93 virtual IntPoint convertFromContainingViewToScrollbar(const Scrollbar*, cons t IntPoint&) const OVERRIDE;
94 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE; 94 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
95 virtual void setScrollOffset(const IntPoint&) OVERRIDE; 95 virtual void setScrollOffset(const IntPoint&) OVERRIDE;
96 virtual IntPoint scrollPosition() const OVERRIDE; 96 virtual IntPoint scrollPosition() const OVERRIDE;
97 virtual IntPoint minimumScrollPosition() const OVERRIDE; 97 virtual IntPoint minimumScrollPosition() const OVERRIDE;
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 // Renderers to hold our custom scroll corner. 256 // Renderers to hold our custom scroll corner.
257 RenderScrollbarPart* m_scrollCorner; 257 RenderScrollbarPart* m_scrollCorner;
258 258
259 // Renderers to hold our custom resizer. 259 // Renderers to hold our custom resizer.
260 RenderScrollbarPart* m_resizer; 260 RenderScrollbarPart* m_resizer;
261 }; 261 };
262 262
263 } // Namespace WebCore 263 } // Namespace WebCore
264 264
265 #endif // RenderLayerScrollableArea_h 265 #endif // RenderLayerScrollableArea_h
OLDNEW
« no previous file with comments | « Source/core/frame/PinchViewport.h ('k') | Source/core/rendering/RenderLayerScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698