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

Unified Diff: webkit/port/platform/FramelessScrollView.h

Issue 7419: Move many files that were suffixed Win.cpp to Chromium.cpp, and place them in... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 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
« no previous file with comments | « webkit/port/platform/FileChooserWin.cpp ('k') | webkit/port/platform/FramelessScrollView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/port/platform/FramelessScrollView.h
===================================================================
--- webkit/port/platform/FramelessScrollView.h (revision 3423)
+++ webkit/port/platform/FramelessScrollView.h (working copy)
@@ -1,38 +0,0 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef FramelessScrollView_h
-#define FramelessScrollView_h
-
-#include "FrameView.h"
-
-namespace WebCore {
-
- class PlatformKeyboardEvent;
-
- // A FramelessScrollView is a ScrollView that can be used to render custom
- // content, which does not have an associated Frame. This extends from
- // FrameView because much of WebCore unfortunately assumes that a
- // ScrollView is a FrameView.
- //
- // TODO: It may be better to just develop a custom subclass of Widget that
- // can have scroll bars for this instead of trying to reuse ScrollView.
- //
- class FramelessScrollView : public FrameView {
- public:
- FramelessScrollView() : FrameView(0) {}
-
- virtual IntRect windowClipRect() const;
-
- // Event handlers
- virtual bool handleMouseDownEvent(const PlatformMouseEvent&) = 0;
- virtual bool handleMouseMoveEvent(const PlatformMouseEvent&) = 0;
- virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&) = 0;
- virtual bool handleWheelEvent(const PlatformWheelEvent&) = 0;
- virtual bool handleKeyEvent(const PlatformKeyboardEvent&) = 0;
- };
-}
-
-#endif // FramelessScrollView_h
-
« no previous file with comments | « webkit/port/platform/FileChooserWin.cpp ('k') | webkit/port/platform/FramelessScrollView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698