| 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_PANELS_PANEL_WINDOW_RESIZER_H_ | 5 #ifndef ASH_WM_PANELS_PANEL_WINDOW_RESIZER_H_ |
| 6 #define ASH_WM_PANELS_PANEL_WINDOW_RESIZER_H_ | 6 #define ASH_WM_PANELS_PANEL_WINDOW_RESIZER_H_ |
| 7 | 7 |
| 8 #include "ash/wm/window_resizer.h" | 8 #include "ash/wm/window_resizer.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 | 10 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 // True if the window should attach to the launcher after releasing. | 81 // True if the window should attach to the launcher after releasing. |
| 82 bool should_attach_; | 82 bool should_attach_; |
| 83 | 83 |
| 84 // If non-NULL the destructor sets this to true. Used to determine if this has | 84 // If non-NULL the destructor sets this to true. Used to determine if this has |
| 85 // been deleted. | 85 // been deleted. |
| 86 bool* destroyed_; | 86 bool* destroyed_; |
| 87 | 87 |
| 88 DISALLOW_COPY_AND_ASSIGN(PanelWindowResizer); | 88 DISALLOW_COPY_AND_ASSIGN(PanelWindowResizer); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace aura | 91 } // namespace ash |
| 92 | 92 |
| 93 #endif // ASH_WM_PANELS_PANEL_WINDOW_RESIZER_H_ | 93 #endif // ASH_WM_PANELS_PANEL_WINDOW_RESIZER_H_ |
| OLD | NEW |