| 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 | |
| 57 namespace gfx { | 53 namespace gfx { |
| 58 class Display; | 54 class Display; |
| 59 class Point; | 55 class Point; |
| 60 class Rect; | 56 class Rect; |
| 61 } | 57 } |
| 62 | 58 |
| 63 namespace ui { | 59 namespace ui { |
| 64 class InputMethod; | 60 class InputMethod; |
| 65 class LocatedEvent; | 61 class LocatedEvent; |
| 66 #if defined(OS_WIN) | 62 #if defined(OS_WIN) |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; | 601 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; |
| 606 | 602 |
| 607 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 603 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 608 | 604 |
| 609 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 605 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 610 }; | 606 }; |
| 611 | 607 |
| 612 } // namespace content | 608 } // namespace content |
| 613 | 609 |
| 614 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 610 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |