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

Unified Diff: ui/aura/root_window_observer.h

Issue 10828133: Desktop Aura: Allow tab drags out of window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 8 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 | « ui/aura/root_window_host_win.cc ('k') | ui/aura/window_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/root_window_observer.h
diff --git a/ui/aura/root_window_observer.h b/ui/aura/root_window_observer.h
index 31bd37f04e59e02e8115d98097f50ef866bac8d6..81dcad95f55ff40c2fbe4987396a3ca136f2a140 100644
--- a/ui/aura/root_window_observer.h
+++ b/ui/aura/root_window_observer.h
@@ -8,6 +8,7 @@
#include "ui/aura/aura_export.h"
namespace gfx {
+class Point;
class Size;
}
@@ -21,6 +22,10 @@ class AURA_EXPORT RootWindowObserver {
virtual void OnRootWindowResized(const RootWindow* root,
const gfx::Size& old_size) {}
+ // Invoked after the RootWindow has been moved on screen.
+ virtual void OnRootWindowMoved(const RootWindow* root,
+ const gfx::Point& new_origin) {}
+
// Invoked when the native windowing system sends us a request to close our
// window.
virtual void OnRootWindowHostCloseRequested(const RootWindow* root) {}
« no previous file with comments | « ui/aura/root_window_host_win.cc ('k') | ui/aura/window_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698