| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_EXO_SHELL_SURFACE_H_ | 5 #ifndef COMPONENTS_EXO_SHELL_SURFACE_H_ |
| 6 #define COMPONENTS_EXO_SHELL_SURFACE_H_ | 6 #define COMPONENTS_EXO_SHELL_SURFACE_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "ash/common/wm/window_state_observer.h" | 12 #include "ash/wm/window_state_observer.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 15 #include "components/exo/surface_delegate.h" | 15 #include "components/exo/surface_delegate.h" |
| 16 #include "components/exo/surface_observer.h" | 16 #include "components/exo/surface_observer.h" |
| 17 #include "components/exo/wm_helper.h" | 17 #include "components/exo/wm_helper.h" |
| 18 #include "ui/aura/window_observer.h" | 18 #include "ui/aura/window_observer.h" |
| 19 #include "ui/base/hit_test.h" | 19 #include "ui/base/hit_test.h" |
| 20 #include "ui/gfx/geometry/point.h" | 20 #include "ui/gfx/geometry/point.h" |
| 21 #include "ui/gfx/geometry/rect.h" | 21 #include "ui/gfx/geometry/rect.h" |
| 22 #include "ui/gfx/geometry/vector2d.h" | 22 #include "ui/gfx/geometry/vector2d.h" |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 int top_inset_height_ = 0; | 347 int top_inset_height_ = 0; |
| 348 int pending_top_inset_height_ = 0; | 348 int pending_top_inset_height_ = 0; |
| 349 bool shadow_underlay_in_surface_ = true; | 349 bool shadow_underlay_in_surface_ = true; |
| 350 | 350 |
| 351 DISALLOW_COPY_AND_ASSIGN(ShellSurface); | 351 DISALLOW_COPY_AND_ASSIGN(ShellSurface); |
| 352 }; | 352 }; |
| 353 | 353 |
| 354 } // namespace exo | 354 } // namespace exo |
| 355 | 355 |
| 356 #endif // COMPONENTS_EXO_SHELL_SURFACE_H_ | 356 #endif // COMPONENTS_EXO_SHELL_SURFACE_H_ |
| OLD | NEW |