| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 { | 53 namespace cc { |
| 54 class CopyOutputRequest; | 54 class CopyOutputRequest; |
| 55 class CopyOutputResult; | 55 class CopyOutputResult; |
| 56 class DelegatedFrameData; | |
| 57 } | 56 } |
| 58 | 57 |
| 59 namespace gfx { | 58 namespace gfx { |
| 60 class Canvas; | 59 class Canvas; |
| 61 class Display; | 60 class Display; |
| 62 class Point; | 61 class Point; |
| 63 class Rect; | 62 class Rect; |
| 64 } | 63 } |
| 65 | 64 |
| 66 namespace gpu { | 65 namespace gpu { |
| (...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; | 614 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; |
| 616 | 615 |
| 617 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 616 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 618 | 617 |
| 619 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 618 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 620 }; | 619 }; |
| 621 | 620 |
| 622 } // namespace content | 621 } // namespace content |
| 623 | 622 |
| 624 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 623 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |