| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_WM_WORKSPACE_WORKSPACE_WINDOW_RESIZER_H_ | 5 #ifndef ASH_WM_WORKSPACE_WORKSPACE_WINDOW_RESIZER_H_ |
| 6 #define ASH_WM_WORKSPACE_WORKSPACE_WINDOW_RESIZER_H_ | 6 #define ASH_WM_WORKSPACE_WORKSPACE_WINDOW_RESIZER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "ash/wm/common/window_resizer.h" |
| 13 #include "ash/wm/common/wm_window_tracker.h" | 14 #include "ash/wm/common/wm_window_tracker.h" |
| 14 #include "ash/wm/window_resizer.h" | |
| 15 #include "ash/wm/workspace/magnetism_matcher.h" | 15 #include "ash/wm/workspace/magnetism_matcher.h" |
| 16 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
| 19 | 19 |
| 20 namespace ash { | 20 namespace ash { |
| 21 class DockedWindowLayoutManager; | 21 class DockedWindowLayoutManager; |
| 22 class PhantomWindowController; | 22 class PhantomWindowController; |
| 23 class TwoStepEdgeCycler; | 23 class TwoStepEdgeCycler; |
| 24 class WindowSize; | 24 class WindowSize; |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 // Used to determine if this has been deleted during a drag such as when a tab | 222 // Used to determine if this has been deleted during a drag such as when a tab |
| 223 // gets dragged into another browser window. | 223 // gets dragged into another browser window. |
| 224 base::WeakPtrFactory<WorkspaceWindowResizer> weak_ptr_factory_; | 224 base::WeakPtrFactory<WorkspaceWindowResizer> weak_ptr_factory_; |
| 225 | 225 |
| 226 DISALLOW_COPY_AND_ASSIGN(WorkspaceWindowResizer); | 226 DISALLOW_COPY_AND_ASSIGN(WorkspaceWindowResizer); |
| 227 }; | 227 }; |
| 228 | 228 |
| 229 } // namespace ash | 229 } // namespace ash |
| 230 | 230 |
| 231 #endif // ASH_WM_WORKSPACE_WORKSPACE_WINDOW_RESIZER_H_ | 231 #endif // ASH_WM_WORKSPACE_WORKSPACE_WINDOW_RESIZER_H_ |
| OLD | NEW |