| OLD | NEW |
| (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; |
| 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_ |
| OLD | NEW |