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

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

Issue 253913003: Remove RenderWidgetHostView*::DidUpdateBackingStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 virtual void SetIsLoading(bool is_loading) OVERRIDE; 68 virtual void SetIsLoading(bool is_loading) OVERRIDE;
69 virtual void TextInputTypeChanged(ui::TextInputType type, 69 virtual void TextInputTypeChanged(ui::TextInputType type,
70 ui::TextInputMode input_mode, 70 ui::TextInputMode input_mode,
71 bool can_compose_inline) OVERRIDE; 71 bool can_compose_inline) OVERRIDE;
72 virtual void ImeCancelComposition() OVERRIDE; 72 virtual void ImeCancelComposition() OVERRIDE;
73 #if defined(OS_MACOSX) || defined(USE_AURA) 73 #if defined(OS_MACOSX) || defined(USE_AURA)
74 virtual void ImeCompositionRangeChanged( 74 virtual void ImeCompositionRangeChanged(
75 const gfx::Range& range, 75 const gfx::Range& range,
76 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; 76 const std::vector<gfx::Rect>& character_bounds) OVERRIDE;
77 #endif 77 #endif
78 virtual void DidUpdateBackingStore(
79 const gfx::Rect& scroll_rect,
80 const gfx::Vector2d& scroll_delta,
81 const std::vector<gfx::Rect>& copy_rects,
82 const std::vector<ui::LatencyInfo>& latency_info) OVERRIDE;
83 virtual void RenderProcessGone(base::TerminationStatus status, 78 virtual void RenderProcessGone(base::TerminationStatus status,
84 int error_code) OVERRIDE; 79 int error_code) OVERRIDE;
85 virtual void Destroy() OVERRIDE; 80 virtual void Destroy() OVERRIDE;
86 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; 81 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE;
87 virtual void SelectionChanged(const base::string16& text, 82 virtual void SelectionChanged(const base::string16& text,
88 size_t offset, 83 size_t offset,
89 const gfx::Range& range) OVERRIDE; 84 const gfx::Range& range) OVERRIDE;
90 virtual void SelectionBoundsChanged( 85 virtual void SelectionBoundsChanged(
91 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; 86 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE;
92 #if defined(OS_ANDROID) 87 #if defined(OS_ANDROID)
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 // sent through it are routed to the embedding renderer process. 171 // sent through it are routed to the embedding renderer process.
177 CrossProcessFrameConnector* frame_connector_; 172 CrossProcessFrameConnector* frame_connector_;
178 173
179 private: 174 private:
180 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); 175 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame);
181 }; 176 };
182 177
183 } // namespace content 178 } // namespace content
184 179
185 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 180 #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