| 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 <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 | 417 |
| 418 // Called prior to removing |window_| from a WindowEventDispatcher. | 418 // Called prior to removing |window_| from a WindowEventDispatcher. |
| 419 void RemovingFromRootWindow(); | 419 void RemovingFromRootWindow(); |
| 420 | 420 |
| 421 // DelegatedFrameHostClient implementation. | 421 // DelegatedFrameHostClient implementation. |
| 422 virtual ui::Compositor* GetCompositor() const OVERRIDE; | 422 virtual ui::Compositor* GetCompositor() const OVERRIDE; |
| 423 virtual ui::Layer* GetLayer() OVERRIDE; | 423 virtual ui::Layer* GetLayer() OVERRIDE; |
| 424 virtual RenderWidgetHostImpl* GetHost() OVERRIDE; | 424 virtual RenderWidgetHostImpl* GetHost() OVERRIDE; |
| 425 virtual void SchedulePaintInRect( | 425 virtual void SchedulePaintInRect( |
| 426 const gfx::Rect& damage_rect_in_dip) OVERRIDE; | 426 const gfx::Rect& damage_rect_in_dip) OVERRIDE; |
| 427 virtual void DelegatedCompositorDidSwapBuffers() OVERRIDE {} | |
| 428 virtual void DelegatedCompositorAbortedSwapBuffers() OVERRIDE {} | |
| 429 virtual bool IsVisible() OVERRIDE; | 427 virtual bool IsVisible() OVERRIDE; |
| 430 virtual scoped_ptr<ResizeLock> CreateResizeLock( | 428 virtual scoped_ptr<ResizeLock> CreateResizeLock( |
| 431 bool defer_compositor_lock) OVERRIDE; | 429 bool defer_compositor_lock) OVERRIDE; |
| 432 virtual gfx::Size DesiredFrameSize() OVERRIDE; | 430 virtual gfx::Size DesiredFrameSize() OVERRIDE; |
| 433 virtual float CurrentDeviceScaleFactor() OVERRIDE; | 431 virtual float CurrentDeviceScaleFactor() OVERRIDE; |
| 434 virtual gfx::Size ConvertViewSizeToPixel(const gfx::Size& size) OVERRIDE; | 432 virtual gfx::Size ConvertViewSizeToPixel(const gfx::Size& size) OVERRIDE; |
| 435 | 433 |
| 436 // Detaches |this| from the input method object. | 434 // Detaches |this| from the input method object. |
| 437 void DetachFromInputMethod(); | 435 void DetachFromInputMethod(); |
| 438 | 436 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 // etc. | 584 // etc. |
| 587 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 585 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
| 588 legacy_render_widget_host_HWND_; | 586 legacy_render_widget_host_HWND_; |
| 589 #endif | 587 #endif |
| 590 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 588 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 591 }; | 589 }; |
| 592 | 590 |
| 593 } // namespace content | 591 } // namespace content |
| 594 | 592 |
| 595 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 593 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |