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

Side by Side Diff: ash/wm/window_resizer_owner.h

Issue 12441010: Attach panel while dragging to bring it in front of other panels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments, etc. Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ASH_WM_WINDOW_RESIZER_OWNER_H_
6 #define ASH_WM_WINDOW_RESIZER_OWNER_H_
7
8 #include "ash/ash_export.h"
9
10 namespace ash {
11
12 class WindowResizer;
13
14 class ASH_EXPORT WindowResizerOwner {
15 public:
16 // Pass the owned WindowResizer to a different WindowResizerOwner.
17 virtual void PassResizer(WindowResizerOwner* new_owner) = 0;
sky 2013/03/13 21:21:34 This seems specific to panels complicates the impl
flackr 2013/03/14 20:02:15 Okay, I've made this more specific. Rather than pa
18
19 // Accept and take ownership of a passed WindowResizer object.
20 virtual void AcceptResizer(WindowResizer* resizer,
21 bool in_gesture_drag) = 0;
22 };
23
24 } // namespace ash
25
26 #endif // ASH_WM_WINDOW_RESIZER_OWNER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698