Chromium Code Reviews| 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/base/cursor/cursor.h" | |
|
Daniel Erat
2012/03/27 22:15:05
nit: fix alphabetization
sadrul
2012/03/27 22:26:13
Done (used tools/sort-headers.py, and it fixed a f
| |
| 14 #include "ui/aura/aura_export.h" | 15 #include "ui/aura/aura_export.h" |
| 15 #include "ui/aura/cursor.h" | |
| 16 #include "ui/aura/focus_manager.h" | 16 #include "ui/aura/focus_manager.h" |
| 17 #include "ui/aura/gestures/gesture_recognizer.h" | 17 #include "ui/aura/gestures/gesture_recognizer.h" |
| 18 #include "ui/aura/window.h" | 18 #include "ui/aura/window.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 |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 362 | 362 |
| 363 CompositorLock* compositor_lock_; | 363 CompositorLock* compositor_lock_; |
| 364 bool draw_on_compositor_unlock_; | 364 bool draw_on_compositor_unlock_; |
| 365 | 365 |
| 366 DISALLOW_COPY_AND_ASSIGN(RootWindow); | 366 DISALLOW_COPY_AND_ASSIGN(RootWindow); |
| 367 }; | 367 }; |
| 368 | 368 |
| 369 } // namespace aura | 369 } // namespace aura |
| 370 | 370 |
| 371 #endif // UI_AURA_ROOT_WINDOW_H_ | 371 #endif // UI_AURA_ROOT_WINDOW_H_ |
| OLD | NEW |