OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 9 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 69 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
70 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 70 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
71 virtual void TextInputStateChanged( | 71 virtual void TextInputStateChanged( |
72 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; | 72 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; |
73 virtual void ImeCancelComposition() OVERRIDE; | 73 virtual void ImeCancelComposition() OVERRIDE; |
74 #if defined(OS_MACOSX) || defined(USE_AURA) | 74 #if defined(OS_MACOSX) || defined(USE_AURA) |
75 virtual void ImeCompositionRangeChanged( | 75 virtual void ImeCompositionRangeChanged( |
76 const gfx::Range& range, | 76 const gfx::Range& range, |
77 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; | 77 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; |
78 #endif | 78 #endif |
79 virtual void RenderProcessGone(base::TerminationStatus status, | |
80 int error_code) OVERRIDE; | |
81 virtual void Destroy() OVERRIDE; | 79 virtual void Destroy() OVERRIDE; |
82 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; | 80 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; |
83 virtual void SelectionChanged(const base::string16& text, | 81 virtual void SelectionChanged(const base::string16& text, |
84 size_t offset, | 82 size_t offset, |
85 const gfx::Range& range) OVERRIDE; | 83 const gfx::Range& range) OVERRIDE; |
86 virtual void SelectionBoundsChanged( | 84 virtual void SelectionBoundsChanged( |
87 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 85 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
88 virtual void CopyFromCompositingSurface( | 86 virtual void CopyFromCompositingSurface( |
89 const gfx::Rect& src_subrect, | 87 const gfx::Rect& src_subrect, |
90 const gfx::Size& dst_size, | 88 const gfx::Size& dst_size, |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 // sent through it are routed to the embedding renderer process. | 168 // sent through it are routed to the embedding renderer process. |
171 CrossProcessFrameConnector* frame_connector_; | 169 CrossProcessFrameConnector* frame_connector_; |
172 | 170 |
173 private: | 171 private: |
174 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 172 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
175 }; | 173 }; |
176 | 174 |
177 } // namespace content | 175 } // namespace content |
178 | 176 |
179 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 177 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
OLD | NEW |