| 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 | 436 |
| 437 // Called after |window_| is parented to a WindowEventDispatcher. | 437 // Called after |window_| is parented to a WindowEventDispatcher. |
| 438 void AddedToRootWindow(); | 438 void AddedToRootWindow(); |
| 439 | 439 |
| 440 // Called prior to removing |window_| from a WindowEventDispatcher. | 440 // Called prior to removing |window_| from a WindowEventDispatcher. |
| 441 void RemovingFromRootWindow(); | 441 void RemovingFromRootWindow(); |
| 442 | 442 |
| 443 // DelegatedFrameHostClient implementation. | 443 // DelegatedFrameHostClient implementation. |
| 444 ui::Layer* DelegatedFrameHostGetLayer() const override; | 444 ui::Layer* DelegatedFrameHostGetLayer() const override; |
| 445 bool DelegatedFrameHostIsVisible() const override; | 445 bool DelegatedFrameHostIsVisible() const override; |
| 446 SkColor DelegatedFrameHostGetGutterColor(SkColor color) const override; |
| 446 gfx::Size DelegatedFrameHostDesiredSizeInDIP() const override; | 447 gfx::Size DelegatedFrameHostDesiredSizeInDIP() const override; |
| 447 bool DelegatedFrameCanCreateResizeLock() const override; | 448 bool DelegatedFrameCanCreateResizeLock() const override; |
| 448 scoped_ptr<ResizeLock> DelegatedFrameHostCreateResizeLock( | 449 scoped_ptr<ResizeLock> DelegatedFrameHostCreateResizeLock( |
| 449 bool defer_compositor_lock) override; | 450 bool defer_compositor_lock) override; |
| 450 void DelegatedFrameHostResizeLockWasReleased() override; | 451 void DelegatedFrameHostResizeLockWasReleased() override; |
| 451 void DelegatedFrameHostSendCompositorSwapAck( | 452 void DelegatedFrameHostSendCompositorSwapAck( |
| 452 int output_surface_id, | 453 int output_surface_id, |
| 453 const cc::CompositorFrameAck& ack) override; | 454 const cc::CompositorFrameAck& ack) override; |
| 454 void DelegatedFrameHostSendReclaimCompositorResources( | 455 void DelegatedFrameHostSendReclaimCompositorResources( |
| 455 int output_surface_id, | 456 int output_surface_id, |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 bool disable_input_event_router_for_testing_; | 689 bool disable_input_event_router_for_testing_; |
| 689 | 690 |
| 690 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 691 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 691 | 692 |
| 692 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 693 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 693 }; | 694 }; |
| 694 | 695 |
| 695 } // namespace content | 696 } // namespace content |
| 696 | 697 |
| 697 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 698 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |