| 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 bool DelegatedFrameHostIsVisible() const override; | 451 bool DelegatedFrameHostIsVisible() const override; |
| 452 SkColor DelegatedFrameHostGetGutterColor(SkColor color) const override; | 452 SkColor DelegatedFrameHostGetGutterColor(SkColor color) const override; |
| 453 gfx::Size DelegatedFrameHostDesiredSizeInDIP() const override; | 453 gfx::Size DelegatedFrameHostDesiredSizeInDIP() const override; |
| 454 bool DelegatedFrameCanCreateResizeLock() const override; | 454 bool DelegatedFrameCanCreateResizeLock() const override; |
| 455 std::unique_ptr<ResizeLock> DelegatedFrameHostCreateResizeLock( | 455 std::unique_ptr<ResizeLock> DelegatedFrameHostCreateResizeLock( |
| 456 bool defer_compositor_lock) override; | 456 bool defer_compositor_lock) override; |
| 457 void DelegatedFrameHostResizeLockWasReleased() override; | 457 void DelegatedFrameHostResizeLockWasReleased() override; |
| 458 void DelegatedFrameHostSendCompositorSwapAck( | 458 void DelegatedFrameHostSendCompositorSwapAck( |
| 459 int output_surface_id, | 459 int output_surface_id, |
| 460 const cc::CompositorFrameAck& ack) override; | 460 const cc::CompositorFrameAck& ack) override; |
| 461 void DelegatedFrameHostSendReclaimCompositorResources( | |
| 462 int output_surface_id, | |
| 463 const cc::CompositorFrameAck& ack) override; | |
| 464 void DelegatedFrameHostOnLostCompositorResources() override; | 461 void DelegatedFrameHostOnLostCompositorResources() override; |
| 465 void DelegatedFrameHostUpdateVSyncParameters( | 462 void DelegatedFrameHostUpdateVSyncParameters( |
| 466 const base::TimeTicks& timebase, | 463 const base::TimeTicks& timebase, |
| 467 const base::TimeDelta& interval) override; | 464 const base::TimeDelta& interval) override; |
| 468 void SetBeginFrameSource(cc::BeginFrameSource* source) override; | 465 void SetBeginFrameSource(cc::BeginFrameSource* source) override; |
| 469 | 466 |
| 470 // TextInputManager::Observer implementation. | 467 // TextInputManager::Observer implementation. |
| 471 void OnUpdateTextInputStateCalled(TextInputManager* text_input_manager, | 468 void OnUpdateTextInputStateCalled(TextInputManager* text_input_manager, |
| 472 RenderWidgetHostViewBase* updated_view, | 469 RenderWidgetHostViewBase* updated_view, |
| 473 bool did_update_state) override; | 470 bool did_update_state) override; |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 bool disable_input_event_router_for_testing_; | 688 bool disable_input_event_router_for_testing_; |
| 692 | 689 |
| 693 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 690 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 694 | 691 |
| 695 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 692 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 696 }; | 693 }; |
| 697 | 694 |
| 698 } // namespace content | 695 } // namespace content |
| 699 | 696 |
| 700 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 697 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |