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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 | 583 |
584 float device_scale_factor_; | 584 float device_scale_factor_; |
585 | 585 |
586 cc::mojom::MojoCompositorFrameSinkClient* renderer_compositor_frame_sink_ = | 586 cc::mojom::MojoCompositorFrameSinkClient* renderer_compositor_frame_sink_ = |
587 nullptr; | 587 nullptr; |
588 | 588 |
589 // While this is a ui::EventHandler for targetting, |event_handler_| actually | 589 // While this is a ui::EventHandler for targetting, |event_handler_| actually |
590 // provides an implementation, and directs events to |host_|. | 590 // provides an implementation, and directs events to |host_|. |
591 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; | 591 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; |
592 | 592 |
| 593 cc::FrameSinkId frame_sink_id_; |
| 594 |
593 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 595 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
594 | 596 |
595 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 597 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
596 }; | 598 }; |
597 | 599 |
598 } // namespace content | 600 } // namespace content |
599 | 601 |
600 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 602 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |