| 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_ROOT_WINDOW_H_ | 5 #ifndef UI_AURA_ROOT_WINDOW_H_ |
| 6 #define UI_AURA_ROOT_WINDOW_H_ | 6 #define UI_AURA_ROOT_WINDOW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
| 14 #include "ui/aura/aura_export.h" | 14 #include "ui/aura/aura_export.h" |
| 15 #include "ui/aura/cursor.h" | |
| 16 #include "ui/aura/focus_manager.h" | 15 #include "ui/aura/focus_manager.h" |
| 17 #include "ui/aura/gestures/gesture_recognizer.h" | 16 #include "ui/aura/gestures/gesture_recognizer.h" |
| 18 #include "ui/aura/window.h" | 17 #include "ui/aura/window.h" |
| 18 #include "ui/base/cursor/cursor.h" |
| 19 #include "ui/base/events.h" | 19 #include "ui/base/events.h" |
| 20 #include "ui/gfx/compositor/compositor.h" | 20 #include "ui/gfx/compositor/compositor.h" |
| 21 #include "ui/gfx/compositor/compositor_observer.h" | 21 #include "ui/gfx/compositor/compositor_observer.h" |
| 22 #include "ui/gfx/compositor/layer_animation_observer.h" | 22 #include "ui/gfx/compositor/layer_animation_observer.h" |
| 23 #include "ui/gfx/native_widget_types.h" | 23 #include "ui/gfx/native_widget_types.h" |
| 24 #include "ui/gfx/point.h" | 24 #include "ui/gfx/point.h" |
| 25 | 25 |
| 26 namespace gfx { | 26 namespace gfx { |
| 27 class Size; | 27 class Size; |
| 28 } | 28 } |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 bool draw_on_compositor_unlock_; | 368 bool draw_on_compositor_unlock_; |
| 369 | 369 |
| 370 int draw_trace_count_; | 370 int draw_trace_count_; |
| 371 | 371 |
| 372 DISALLOW_COPY_AND_ASSIGN(RootWindow); | 372 DISALLOW_COPY_AND_ASSIGN(RootWindow); |
| 373 }; | 373 }; |
| 374 | 374 |
| 375 } // namespace aura | 375 } // namespace aura |
| 376 | 376 |
| 377 #endif // UI_AURA_ROOT_WINDOW_H_ | 377 #endif // UI_AURA_ROOT_WINDOW_H_ |
| OLD | NEW |