| 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 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/message_loop.h" | 14 #include "base/message_loop.h" |
| 15 #include "ui/aura/aura_export.h" | 15 #include "ui/aura/aura_export.h" |
| 16 #include "ui/aura/client/capture_delegate.h" | 16 #include "ui/aura/client/capture_delegate.h" |
| 17 #include "ui/aura/root_window_host_delegate.h" | 17 #include "ui/aura/root_window_host_delegate.h" |
| 18 #include "ui/aura/window.h" | 18 #include "ui/aura/window.h" |
| 19 #include "ui/base/cursor/cursor.h" | 19 #include "ui/base/cursor/cursor.h" |
| 20 #include "ui/base/events/event_constants.h" |
| 20 #include "ui/base/events/event_dispatcher.h" | 21 #include "ui/base/events/event_dispatcher.h" |
| 21 #include "ui/base/events.h" | |
| 22 #include "ui/base/gestures/gesture_recognizer.h" | 22 #include "ui/base/gestures/gesture_recognizer.h" |
| 23 #include "ui/base/gestures/gesture_types.h" | 23 #include "ui/base/gestures/gesture_types.h" |
| 24 #include "ui/compositor/compositor.h" | 24 #include "ui/compositor/compositor.h" |
| 25 #include "ui/compositor/compositor_observer.h" | 25 #include "ui/compositor/compositor_observer.h" |
| 26 #include "ui/compositor/layer_animation_observer.h" | 26 #include "ui/compositor/layer_animation_observer.h" |
| 27 #include "ui/gfx/native_widget_types.h" | 27 #include "ui/gfx/native_widget_types.h" |
| 28 #include "ui/gfx/point.h" | 28 #include "ui/gfx/point.h" |
| 29 | 29 |
| 30 namespace gfx { | 30 namespace gfx { |
| 31 class Size; | 31 class Size; |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 | 401 |
| 402 CompositorLock* compositor_lock_; | 402 CompositorLock* compositor_lock_; |
| 403 bool draw_on_compositor_unlock_; | 403 bool draw_on_compositor_unlock_; |
| 404 | 404 |
| 405 DISALLOW_COPY_AND_ASSIGN(RootWindow); | 405 DISALLOW_COPY_AND_ASSIGN(RootWindow); |
| 406 }; | 406 }; |
| 407 | 407 |
| 408 } // namespace aura | 408 } // namespace aura |
| 409 | 409 |
| 410 #endif // UI_AURA_ROOT_WINDOW_H_ | 410 #endif // UI_AURA_ROOT_WINDOW_H_ |
| OLD | NEW |