| 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/dip_util.h" | 15 #include "ui/aura/dip_util.h" |
| 16 #include "ui/aura/focus_manager.h" | 16 #include "ui/aura/focus_manager.h" |
| 17 #include "ui/aura/window.h" | 17 #include "ui/aura/window.h" |
| 18 #include "ui/base/cursor/cursor.h" | 18 #include "ui/base/cursor/cursor.h" |
| 19 #include "ui/base/events.h" | 19 #include "ui/base/events.h" |
| 20 #include "ui/base/gestures/gesture_recognizer.h" | 20 #include "ui/base/gestures/gesture_recognizer.h" |
| 21 #include "ui/base/gestures/gesture_types.h" | 21 #include "ui/base/gestures/gesture_types.h" |
| 22 #include "ui/gfx/compositor/compositor.h" | 22 #include "ui/compositor/compositor.h" |
| 23 #include "ui/gfx/compositor/compositor_observer.h" | 23 #include "ui/compositor/compositor_observer.h" |
| 24 #include "ui/gfx/compositor/layer_animation_observer.h" | 24 #include "ui/compositor/layer_animation_observer.h" |
| 25 #include "ui/gfx/native_widget_types.h" | 25 #include "ui/gfx/native_widget_types.h" |
| 26 #include "ui/gfx/point.h" | 26 #include "ui/gfx/point.h" |
| 27 | 27 |
| 28 namespace gfx { | 28 namespace gfx { |
| 29 class Size; | 29 class Size; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace ui { | 32 namespace ui { |
| 33 class GestureRecognizer; | 33 class GestureRecognizer; |
| 34 class LayerAnimationSequence; | 34 class LayerAnimationSequence; |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 bool draw_on_compositor_unlock_; | 404 bool draw_on_compositor_unlock_; |
| 405 | 405 |
| 406 int draw_trace_count_; | 406 int draw_trace_count_; |
| 407 | 407 |
| 408 DISALLOW_COPY_AND_ASSIGN(RootWindow); | 408 DISALLOW_COPY_AND_ASSIGN(RootWindow); |
| 409 }; | 409 }; |
| 410 | 410 |
| 411 } // namespace aura | 411 } // namespace aura |
| 412 | 412 |
| 413 #endif // UI_AURA_ROOT_WINDOW_H_ | 413 #endif // UI_AURA_ROOT_WINDOW_H_ |
| OLD | NEW |