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

Unified Diff: sky/engine/core/frame/FrameView.h

Issue 689283003: Remove scroll corners and resizers. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/css/resolver/StyleBuilderCustom.cpp ('k') | sky/engine/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/frame/FrameView.h
diff --git a/sky/engine/core/frame/FrameView.h b/sky/engine/core/frame/FrameView.h
index efae0f2e9d567d848b8e2b2aaad4e5b4829a08d6..aea8f6fbb706f9f977cd3407d7e5250e2fc04a6c 100644
--- a/sky/engine/core/frame/FrameView.h
+++ b/sky/engine/core/frame/FrameView.h
@@ -179,14 +179,6 @@ public:
void removeScrollableArea(ScrollableArea*);
const ScrollableAreaSet* scrollableAreas() const { return m_scrollableAreas.get(); }
- // With CSS style "resize:" enabled, a little resizer handle will appear at the bottom
- // right of the object. We keep track of these resizer areas for checking if touches
- // (implemented using Scroll gesture) are targeting the resizer.
- typedef HashSet<RenderBox*> ResizerAreaSet;
- void addResizerArea(RenderBox&);
- void removeResizerArea(RenderBox&);
- const ResizerAreaSet* resizerAreas() const { return m_resizerAreas.get(); }
-
// This function exists for ports that need to handle wheel events manually.
// On Mac WebKit1 the underlying NSScrollView just does the scrolling, but on most other platforms
// we need this function in order to do the scroll ourselves.
@@ -302,7 +294,6 @@ private:
bool m_isPainting;
OwnPtr<ScrollableAreaSet> m_scrollableAreas;
- OwnPtr<ResizerAreaSet> m_resizerAreas;
bool m_hasSoftwareFilters;
« no previous file with comments | « sky/engine/core/css/resolver/StyleBuilderCustom.cpp ('k') | sky/engine/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698