| 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 <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 class InputMethod; | 64 class InputMethod; |
| 65 class LocatedEvent; | 65 class LocatedEvent; |
| 66 class Texture; | 66 class Texture; |
| 67 } | 67 } |
| 68 | 68 |
| 69 namespace content { | 69 namespace content { |
| 70 #if defined(OS_WIN) | 70 #if defined(OS_WIN) |
| 71 class LegacyRenderWidgetHostHWND; | 71 class LegacyRenderWidgetHostHWND; |
| 72 #endif | 72 #endif |
| 73 | 73 |
| 74 class Flinger; |
| 74 class OverscrollController; | 75 class OverscrollController; |
| 75 class RenderFrameHostImpl; | 76 class RenderFrameHostImpl; |
| 76 class RenderWidgetHostImpl; | 77 class RenderWidgetHostImpl; |
| 77 class RenderWidgetHostView; | 78 class RenderWidgetHostView; |
| 78 | 79 |
| 79 // RenderWidgetHostView class hierarchy described in render_widget_host_view.h. | 80 // RenderWidgetHostView class hierarchy described in render_widget_host_view.h. |
| 80 class CONTENT_EXPORT RenderWidgetHostViewAura | 81 class CONTENT_EXPORT RenderWidgetHostViewAura |
| 81 : public RenderWidgetHostViewBase, | 82 : public RenderWidgetHostViewBase, |
| 82 public DelegatedFrameHostClient, | 83 public DelegatedFrameHostClient, |
| 83 public ui::TextInputClient, | 84 public ui::TextInputClient, |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 | 609 |
| 609 // The last scroll offset of the view. | 610 // The last scroll offset of the view. |
| 610 gfx::Vector2dF last_scroll_offset_; | 611 gfx::Vector2dF last_scroll_offset_; |
| 611 | 612 |
| 612 gfx::Insets insets_; | 613 gfx::Insets insets_; |
| 613 | 614 |
| 614 std::vector<ui::LatencyInfo> software_latency_info_; | 615 std::vector<ui::LatencyInfo> software_latency_info_; |
| 615 | 616 |
| 616 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 617 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
| 617 | 618 |
| 619 scoped_ptr<Flinger> flinger_; |
| 618 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 620 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 619 | 621 |
| 620 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 622 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 621 }; | 623 }; |
| 622 | 624 |
| 623 } // namespace content | 625 } // namespace content |
| 624 | 626 |
| 625 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 627 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |