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

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

Issue 870073003: Remove mouse events from Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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: sky/engine/core/frame/FrameView.h
diff --git a/sky/engine/core/frame/FrameView.h b/sky/engine/core/frame/FrameView.h
index adf6448f5f44289b3f0830090d7f2b5d11e2bfd5..19b0f33786fd0ed40403bf49a3459aa3a5ca8a1a 100644
--- a/sky/engine/core/frame/FrameView.h
+++ b/sky/engine/core/frame/FrameView.h
@@ -160,11 +160,6 @@ public:
void removeScrollableArea(ScrollableArea*);
const ScrollableAreaSet* scrollableAreas() const { return m_scrollableAreas.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.
- bool wheelEvent(const PlatformWheelEvent&);
-
void setHasSoftwareFilters(bool hasSoftwareFilters) { m_hasSoftwareFilters = hasSoftwareFilters; }
bool hasSoftwareFilters() const { return m_hasSoftwareFilters; }

Powered by Google App Engine
This is Rietveld 408576698