| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "ui/gfx/geometry/rect.h" | 43 #include "ui/gfx/geometry/rect.h" |
| 44 #include "ui/gfx/selection_bound.h" | 44 #include "ui/gfx/selection_bound.h" |
| 45 #include "ui/wm/public/activation_delegate.h" | 45 #include "ui/wm/public/activation_delegate.h" |
| 46 | 46 |
| 47 namespace aura { | 47 namespace aura { |
| 48 namespace client { | 48 namespace client { |
| 49 class ScopedTooltipDisabler; | 49 class ScopedTooltipDisabler; |
| 50 } | 50 } |
| 51 } | 51 } |
| 52 | 52 |
| 53 namespace cc { |
| 54 class DelegatedFrameData; |
| 55 } |
| 56 |
| 53 namespace gfx { | 57 namespace gfx { |
| 54 class Display; | 58 class Display; |
| 55 class Point; | 59 class Point; |
| 56 class Rect; | 60 class Rect; |
| 57 } | 61 } |
| 58 | 62 |
| 59 namespace ui { | 63 namespace ui { |
| 60 class InputMethod; | 64 class InputMethod; |
| 61 class LocatedEvent; | 65 class LocatedEvent; |
| 62 #if defined(OS_WIN) | 66 #if defined(OS_WIN) |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; | 605 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; |
| 602 | 606 |
| 603 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 607 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 604 | 608 |
| 605 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 609 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 606 }; | 610 }; |
| 607 | 611 |
| 608 } // namespace content | 612 } // namespace content |
| 609 | 613 |
| 610 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 614 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |