| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; | 238 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; |
| 239 #endif | 239 #endif |
| 240 | 240 |
| 241 // Overridden from ui::TextInputClient: | 241 // Overridden from ui::TextInputClient: |
| 242 virtual void SetCompositionText( | 242 virtual void SetCompositionText( |
| 243 const ui::CompositionText& composition) OVERRIDE; | 243 const ui::CompositionText& composition) OVERRIDE; |
| 244 virtual void ConfirmCompositionText() OVERRIDE; | 244 virtual void ConfirmCompositionText() OVERRIDE; |
| 245 virtual void ClearCompositionText() OVERRIDE; | 245 virtual void ClearCompositionText() OVERRIDE; |
| 246 virtual void InsertText(const base::string16& text) OVERRIDE; | 246 virtual void InsertText(const base::string16& text) OVERRIDE; |
| 247 virtual void InsertChar(base::char16 ch, int flags) OVERRIDE; | 247 virtual void InsertChar(base::char16 ch, int flags) OVERRIDE; |
| 248 virtual gfx::NativeWindow GetAttachedWindow() const OVERRIDE; | |
| 249 virtual ui::TextInputType GetTextInputType() const OVERRIDE; | 248 virtual ui::TextInputType GetTextInputType() const OVERRIDE; |
| 250 virtual ui::TextInputMode GetTextInputMode() const OVERRIDE; | 249 virtual ui::TextInputMode GetTextInputMode() const OVERRIDE; |
| 251 virtual bool CanComposeInline() const OVERRIDE; | 250 virtual bool CanComposeInline() const OVERRIDE; |
| 252 virtual gfx::Rect GetCaretBounds() const OVERRIDE; | 251 virtual gfx::Rect GetCaretBounds() const OVERRIDE; |
| 253 virtual bool GetCompositionCharacterBounds(uint32 index, | 252 virtual bool GetCompositionCharacterBounds(uint32 index, |
| 254 gfx::Rect* rect) const OVERRIDE; | 253 gfx::Rect* rect) const OVERRIDE; |
| 255 virtual bool HasCompositionText() const OVERRIDE; | 254 virtual bool HasCompositionText() const OVERRIDE; |
| 256 virtual bool GetTextRange(gfx::Range* range) const OVERRIDE; | 255 virtual bool GetTextRange(gfx::Range* range) const OVERRIDE; |
| 257 virtual bool GetCompositionTextRange(gfx::Range* range) const OVERRIDE; | 256 virtual bool GetCompositionTextRange(gfx::Range* range) const OVERRIDE; |
| 258 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; | 257 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 // etc. | 778 // etc. |
| 780 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 779 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
| 781 legacy_render_widget_host_HWND_; | 780 legacy_render_widget_host_HWND_; |
| 782 #endif | 781 #endif |
| 783 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 782 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 784 }; | 783 }; |
| 785 | 784 |
| 786 } // namespace content | 785 } // namespace content |
| 787 | 786 |
| 788 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 787 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |