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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "ui/aura/client/activation_delegate.h" | 24 #include "ui/aura/client/activation_delegate.h" |
25 #include "ui/aura/client/cursor_client_observer.h" | 25 #include "ui/aura/client/cursor_client_observer.h" |
26 #include "ui/aura/client/focus_change_observer.h" | 26 #include "ui/aura/client/focus_change_observer.h" |
27 #include "ui/aura/root_window_observer.h" | 27 #include "ui/aura/root_window_observer.h" |
28 #include "ui/aura/window_delegate.h" | 28 #include "ui/aura/window_delegate.h" |
29 #include "ui/base/ime/text_input_client.h" | 29 #include "ui/base/ime/text_input_client.h" |
30 #include "ui/compositor/compositor.h" | 30 #include "ui/compositor/compositor.h" |
31 #include "ui/compositor/compositor_observer.h" | 31 #include "ui/compositor/compositor_observer.h" |
32 #include "ui/gfx/display_observer.h" | 32 #include "ui/gfx/display_observer.h" |
33 #include "ui/gfx/rect.h" | 33 #include "ui/gfx/rect.h" |
34 #include "webkit/glue/webcursor.h" | 34 #include "webkit/common/cursors/webcursor.h" |
35 | 35 |
36 namespace aura { | 36 namespace aura { |
37 class WindowTracker; | 37 class WindowTracker; |
38 } | 38 } |
39 | 39 |
40 namespace cc { | 40 namespace cc { |
41 class DelegatedFrameData; | 41 class DelegatedFrameData; |
42 } | 42 } |
43 | 43 |
44 namespace gfx { | 44 namespace gfx { |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; | 671 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; |
672 | 672 |
673 TouchEditingClient* touch_editing_client_; | 673 TouchEditingClient* touch_editing_client_; |
674 | 674 |
675 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 675 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
676 }; | 676 }; |
677 | 677 |
678 } // namespace content | 678 } // namespace content |
679 | 679 |
680 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 680 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |