Chromium Code Reviews| 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_WINDOW_RESIZER_H_ | 5 #ifndef ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ |
| 6 #define ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ | 6 #define ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/wm/window_resizer.h" | 10 #include "ash/wm/window_resizer.h" |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 159 // |snapped_type|. | 159 // |snapped_type|. |
| 160 bool AreBoundsValidSnappedBounds(wm::WindowStateType snapped_type, | 160 bool AreBoundsValidSnappedBounds(wm::WindowStateType snapped_type, |
| 161 const gfx::Rect& bounds_in_parent) const; | 161 const gfx::Rect& bounds_in_parent) const; |
| 162 | 162 |
| 163 // Docks or undocks the dragged window. | 163 // Docks or undocks the dragged window. |
| 164 void SetDraggedWindowDocked(bool should_dock); | 164 void SetDraggedWindowDocked(bool should_dock); |
| 165 | 165 |
| 166 wm::WindowState* window_state() { return window_state_; } | 166 wm::WindowState* window_state() { return window_state_; } |
| 167 | 167 |
| 168 const std::vector<aura::Window*> attached_windows_; | 168 const std::vector<aura::Window*> attached_windows_; |
| 169 | 169 |
|
oshima
2014/09/03 00:04:02
Can you add static method to return the instance t
Anand Ratn (left samsung)
2014/09/03 07:56:22
I have Added the instance method in new patchset.
| |
| 170 bool did_lock_cursor_; | 170 bool did_lock_cursor_; |
| 171 | 171 |
| 172 // Set to true once Drag() is invoked and the bounds of the window change. | 172 // Set to true once Drag() is invoked and the bounds of the window change. |
| 173 bool did_move_or_resize_; | 173 bool did_move_or_resize_; |
| 174 | 174 |
| 175 // True if the window initially had |bounds_changed_by_user_| set in state. | 175 // True if the window initially had |bounds_changed_by_user_| set in state. |
| 176 bool initial_bounds_changed_by_user_; | 176 bool initial_bounds_changed_by_user_; |
| 177 | 177 |
| 178 // The initial size of each of the windows in |attached_windows_| along the | 178 // The initial size of each of the windows in |attached_windows_| along the |
| 179 // primary axis. | 179 // primary axis. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 214 // should attach. | 214 // should attach. |
| 215 MatchedEdge magnetism_edge_; | 215 MatchedEdge magnetism_edge_; |
| 216 | 216 |
| 217 // Dock container window layout manager. | 217 // Dock container window layout manager. |
| 218 DockedWindowLayoutManager* dock_layout_; | 218 DockedWindowLayoutManager* dock_layout_; |
| 219 | 219 |
| 220 // Used to determine if this has been deleted during a drag such as when a tab | 220 // Used to determine if this has been deleted during a drag such as when a tab |
| 221 // gets dragged into another browser window. | 221 // gets dragged into another browser window. |
| 222 base::WeakPtrFactory<WorkspaceWindowResizer> weak_ptr_factory_; | 222 base::WeakPtrFactory<WorkspaceWindowResizer> weak_ptr_factory_; |
| 223 | 223 |
| 224 // Current instance for use by the WorkspaceWindowResizerTest. | |
| 225 static WorkspaceWindowResizer* instance_; | |
| 226 | |
| 227 DISALLOW_COPY_AND_ASSIGN(WorkspaceWindowResizer); | 224 DISALLOW_COPY_AND_ASSIGN(WorkspaceWindowResizer); |
| 228 }; | 225 }; |
| 229 | 226 |
| 230 } // namespace ash | 227 } // namespace ash |
| 231 | 228 |
| 232 #endif // ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ | 229 #endif // ASH_WM_WORKSPACE_WINDOW_RESIZER_H_ |
| OLD | NEW |