| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 const blink::WebInputEvent& input_event) OVERRIDE; | 221 const blink::WebInputEvent& input_event) OVERRIDE; |
| 222 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 222 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
| 223 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 223 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
| 224 virtual bool LockMouse() OVERRIDE; | 224 virtual bool LockMouse() OVERRIDE; |
| 225 virtual void UnlockMouse() OVERRIDE; | 225 virtual void UnlockMouse() OVERRIDE; |
| 226 virtual void OnSwapCompositorFrame( | 226 virtual void OnSwapCompositorFrame( |
| 227 uint32 output_surface_id, | 227 uint32 output_surface_id, |
| 228 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 228 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
| 229 | 229 |
| 230 #if defined(OS_WIN) | 230 #if defined(OS_WIN) |
| 231 virtual void SetParentNativeViewAccessible( | 231 virtual HWND GetAccessibleParentHWND() const OVERRIDE; |
| 232 gfx::NativeViewAccessible accessible_parent) OVERRIDE; | 232 virtual IAccessible* GetParentIAccessible() const OVERRIDE; |
| 233 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; | 233 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; |
| 234 #endif | 234 #endif |
| 235 | 235 |
| 236 // Overridden from ui::TextInputClient: | 236 // Overridden from ui::TextInputClient: |
| 237 virtual void SetCompositionText( | 237 virtual void SetCompositionText( |
| 238 const ui::CompositionText& composition) OVERRIDE; | 238 const ui::CompositionText& composition) OVERRIDE; |
| 239 virtual void ConfirmCompositionText() OVERRIDE; | 239 virtual void ConfirmCompositionText() OVERRIDE; |
| 240 virtual void ClearCompositionText() OVERRIDE; | 240 virtual void ClearCompositionText() OVERRIDE; |
| 241 virtual void InsertText(const base::string16& text) OVERRIDE; | 241 virtual void InsertText(const base::string16& text) OVERRIDE; |
| 242 virtual void InsertChar(base::char16 ch, int flags) OVERRIDE; | 242 virtual void InsertChar(base::char16 ch, int flags) OVERRIDE; |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 // etc. | 584 // etc. |
| 585 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 585 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
| 586 legacy_render_widget_host_HWND_; | 586 legacy_render_widget_host_HWND_; |
| 587 #endif | 587 #endif |
| 588 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 588 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 589 }; | 589 }; |
| 590 | 590 |
| 591 } // namespace content | 591 } // namespace content |
| 592 | 592 |
| 593 #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 |