Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: content/browser/frame_host/render_widget_host_view_child_frame.h

Issue 536063002: Clean up RenderWidgetHostView destruction (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Safer scheme Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/frame_host/render_widget_host_view_child_frame.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/render_widget_host_view_child_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698