| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 virtual void Focus() OVERRIDE; | 162 virtual void Focus() OVERRIDE; |
| 163 virtual void Blur() OVERRIDE; | 163 virtual void Blur() OVERRIDE; |
| 164 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 164 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
| 165 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 165 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
| 166 virtual void TextInputStateChanged( | 166 virtual void TextInputStateChanged( |
| 167 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; | 167 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; |
| 168 virtual void ImeCancelComposition() OVERRIDE; | 168 virtual void ImeCancelComposition() OVERRIDE; |
| 169 virtual void ImeCompositionRangeChanged( | 169 virtual void ImeCompositionRangeChanged( |
| 170 const gfx::Range& range, | 170 const gfx::Range& range, |
| 171 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; | 171 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; |
| 172 virtual void RenderProcessGone(base::TerminationStatus status, | |
| 173 int error_code) OVERRIDE; | |
| 174 virtual void Destroy() OVERRIDE; | 172 virtual void Destroy() OVERRIDE; |
| 175 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; | 173 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; |
| 176 virtual void SelectionChanged(const base::string16& text, | 174 virtual void SelectionChanged(const base::string16& text, |
| 177 size_t offset, | 175 size_t offset, |
| 178 const gfx::Range& range) OVERRIDE; | 176 const gfx::Range& range) OVERRIDE; |
| 179 virtual gfx::Size GetRequestedRendererSize() const OVERRIDE; | 177 virtual gfx::Size GetRequestedRendererSize() const OVERRIDE; |
| 180 virtual void SelectionBoundsChanged( | 178 virtual void SelectionBoundsChanged( |
| 181 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 179 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
| 182 virtual void CopyFromCompositingSurface( | 180 virtual void CopyFromCompositingSurface( |
| 183 const gfx::Rect& src_subrect, | 181 const gfx::Rect& src_subrect, |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 604 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
| 607 | 605 |
| 608 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 606 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 609 | 607 |
| 610 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 608 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 611 }; | 609 }; |
| 612 | 610 |
| 613 } // namespace content | 611 } // namespace content |
| 614 | 612 |
| 615 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 613 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |