| 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 UI_AURA_WINDOW_H_ | 5 #ifndef UI_AURA_WINDOW_H_ |
| 6 #define UI_AURA_WINDOW_H_ | 6 #define UI_AURA_WINDOW_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "ui/gfx/geometry/rect.h" | 30 #include "ui/gfx/geometry/rect.h" |
| 31 #include "ui/gfx/native_widget_types.h" | 31 #include "ui/gfx/native_widget_types.h" |
| 32 #include "ui/wm/public/window_types.h" | 32 #include "ui/wm/public/window_types.h" |
| 33 | 33 |
| 34 namespace display { | 34 namespace display { |
| 35 class Display; | 35 class Display; |
| 36 } | 36 } |
| 37 | 37 |
| 38 namespace gfx { | 38 namespace gfx { |
| 39 class Transform; | 39 class Transform; |
| 40 class Vector2d; | |
| 41 } | 40 } |
| 42 | 41 |
| 43 namespace ui { | 42 namespace ui { |
| 44 class EventHandler; | |
| 45 class Layer; | 43 class Layer; |
| 46 class TextInputClient; | |
| 47 class Texture; | |
| 48 } | 44 } |
| 49 | 45 |
| 50 namespace aura { | 46 namespace aura { |
| 51 | 47 |
| 52 class LayoutManager; | 48 class LayoutManager; |
| 53 class WindowDelegate; | 49 class WindowDelegate; |
| 54 class WindowPort; | 50 class WindowPort; |
| 55 class WindowObserver; | 51 class WindowObserver; |
| 56 class WindowTreeHost; | 52 class WindowTreeHost; |
| 57 | 53 |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 }; | 529 }; |
| 534 | 530 |
| 535 std::map<const void*, Value> prop_map_; | 531 std::map<const void*, Value> prop_map_; |
| 536 | 532 |
| 537 DISALLOW_COPY_AND_ASSIGN(Window); | 533 DISALLOW_COPY_AND_ASSIGN(Window); |
| 538 }; | 534 }; |
| 539 | 535 |
| 540 } // namespace aura | 536 } // namespace aura |
| 541 | 537 |
| 542 #endif // UI_AURA_WINDOW_H_ | 538 #endif // UI_AURA_WINDOW_H_ |
| OLD | NEW |