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

Unified Diff: aura/window_delegate.h

Issue 7791030: Proper MouseEvent targeting. Adds a Window method that locates a Window for a given point. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « aura/window.cc ('k') | aura/window_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: aura/window_delegate.h
===================================================================
--- aura/window_delegate.h (revision 98852)
+++ aura/window_delegate.h (working copy)
@@ -12,12 +12,20 @@
namespace aura {
+class MouseEvent;
+
// Delegate interface for aura::Window.
class WindowDelegate {
public:
+ virtual bool OnMouseEvent(const MouseEvent& event) = 0;
+
// Asks the delegate to paint window contents into the supplied canvas.
- virtual void OnPaint(gfx::Canvas* canvas) = 0;
+ virtual void OnPaint(gfx::Canvas* canvas) = 0;
+ // Called when the Window has been destroyed (i.e. from its destructor).
+ // The delegate can use this as an opportunity to delete itself if necessary.
+ virtual void OnWindowDestroyed() = 0;
+
protected:
virtual ~WindowDelegate() {}
};
« no previous file with comments | « aura/window.cc ('k') | aura/window_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698