| 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; | 277 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; |
| 278 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; | 278 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; |
| 279 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; | 279 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; |
| 280 virtual bool GetTextFromRange(const gfx::Range& range, | 280 virtual bool GetTextFromRange(const gfx::Range& range, |
| 281 string16* text) const OVERRIDE; | 281 string16* text) const OVERRIDE; |
| 282 virtual void OnInputMethodChanged() OVERRIDE; | 282 virtual void OnInputMethodChanged() OVERRIDE; |
| 283 virtual bool ChangeTextDirectionAndLayoutAlignment( | 283 virtual bool ChangeTextDirectionAndLayoutAlignment( |
| 284 base::i18n::TextDirection direction) OVERRIDE; | 284 base::i18n::TextDirection direction) OVERRIDE; |
| 285 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; | 285 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; |
| 286 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; | 286 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; |
| 287 virtual void OnCandidateWindowShow() OVERRIDE; |
| 288 virtual void OnCandidateWindowUpdate() OVERRIDE; |
| 289 virtual void OnCandidateWindowHide() OVERRIDE; |
| 287 | 290 |
| 288 // Overridden from gfx::DisplayObserver: | 291 // Overridden from gfx::DisplayObserver: |
| 289 virtual void OnDisplayBoundsChanged(const gfx::Display& display) OVERRIDE; | 292 virtual void OnDisplayBoundsChanged(const gfx::Display& display) OVERRIDE; |
| 290 virtual void OnDisplayAdded(const gfx::Display& new_display) OVERRIDE; | 293 virtual void OnDisplayAdded(const gfx::Display& new_display) OVERRIDE; |
| 291 virtual void OnDisplayRemoved(const gfx::Display& old_display) OVERRIDE; | 294 virtual void OnDisplayRemoved(const gfx::Display& old_display) OVERRIDE; |
| 292 | 295 |
| 293 // Overridden from aura::WindowDelegate: | 296 // Overridden from aura::WindowDelegate: |
| 294 virtual gfx::Size GetMinimumSize() const OVERRIDE; | 297 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
| 295 virtual gfx::Size GetMaximumSize() const OVERRIDE; | 298 virtual gfx::Size GetMaximumSize() const OVERRIDE; |
| 296 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, | 299 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 // passed to windowless plugins like Flash/Silverlight, etc as the | 778 // passed to windowless plugins like Flash/Silverlight, etc as the |
| 776 // container window. | 779 // container window. |
| 777 HWND plugin_parent_window_; | 780 HWND plugin_parent_window_; |
| 778 #endif | 781 #endif |
| 779 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 782 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 780 }; | 783 }; |
| 781 | 784 |
| 782 } // namespace content | 785 } // namespace content |
| 783 | 786 |
| 784 #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 |