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

Unified Diff: ui/views/widget/desktop_aura/desktop_drag_drop_client_win.h

Issue 38423002: Make aura::clients take Window instead of RootWindow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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
Index: ui/views/widget/desktop_aura/desktop_drag_drop_client_win.h
diff --git a/ui/views/widget/desktop_aura/desktop_drag_drop_client_win.h b/ui/views/widget/desktop_aura/desktop_drag_drop_client_win.h
index 7aa4952ab39a7ae5cb50fb7306a2a8c2776e824b..042a5a8a3c3b10b269915416caed9d3c7e05443c 100644
--- a/ui/views/widget/desktop_aura/desktop_drag_drop_client_win.h
+++ b/ui/views/widget/desktop_aura/desktop_drag_drop_client_win.h
@@ -12,7 +12,6 @@
namespace ui {
class DragSourceWin;
-class RootWindow;
}
namespace views {
@@ -22,13 +21,13 @@ class DesktopDropTargetWin;
class VIEWS_EXPORT DesktopDragDropClientWin
: public aura::client::DragDropClient {
public:
- DesktopDragDropClientWin(aura::RootWindow* root_window, HWND window);
+ DesktopDragDropClientWin(aura::Window* root_window, HWND window);
virtual ~DesktopDragDropClientWin();
// Overridden from aura::client::DragDropClient:
virtual int StartDragAndDrop(
const ui::OSExchangeData& data,
- aura::RootWindow* root_window,
+ aura::Window* root_window,
aura::Window* source_window,
const gfx::Point& root_location,
int operation,

Powered by Google App Engine
This is Rietveld 408576698