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

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

Issue 186753002: Chromium plumbing to use the selection root bounds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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
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 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" 5 #include "content/browser/frame_host/render_widget_host_view_child_frame.h"
6 6
7 #include "content/browser/frame_host/cross_process_frame_connector.h" 7 #include "content/browser/frame_host/cross_process_frame_connector.h"
8 #include "content/browser/renderer_host/render_widget_host_impl.h" 8 #include "content/browser/renderer_host/render_widget_host_impl.h"
9 #include "content/common/gpu/gpu_messages.h" 9 #include "content/common/gpu/gpu_messages.h"
10 #include "content/common/view_messages.h" 10 #include "content/common/view_messages.h"
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 void RenderWidgetHostViewChildFrame::SelectionChanged( 188 void RenderWidgetHostViewChildFrame::SelectionChanged(
189 const base::string16& text, 189 const base::string16& text,
190 size_t offset, 190 size_t offset,
191 const gfx::Range& range) { 191 const gfx::Range& range) {
192 } 192 }
193 193
194 void RenderWidgetHostViewChildFrame::SelectionBoundsChanged( 194 void RenderWidgetHostViewChildFrame::SelectionBoundsChanged(
195 const ViewHostMsg_SelectionBounds_Params& params) { 195 const ViewHostMsg_SelectionBounds_Params& params) {
196 } 196 }
197 197
198 void RenderWidgetHostViewChildFrame::SelectionRootBoundsChanged(
199 const gfx::Rect& bounds) {
200
201 }
202
198 void RenderWidgetHostViewChildFrame::ScrollOffsetChanged() { 203 void RenderWidgetHostViewChildFrame::ScrollOffsetChanged() {
199 } 204 }
200 205
201 void RenderWidgetHostViewChildFrame::OnAcceleratedCompositingStateChange() { 206 void RenderWidgetHostViewChildFrame::OnAcceleratedCompositingStateChange() {
202 } 207 }
203 208
204 void RenderWidgetHostViewChildFrame::AcceleratedSurfaceInitialized(int host_id, 209 void RenderWidgetHostViewChildFrame::AcceleratedSurfaceInitialized(int host_id,
205 int route_id) { 210 int route_id) {
206 } 211 }
207 212
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 gfx::NativeViewAccessible accessible_parent) { 365 gfx::NativeViewAccessible accessible_parent) {
361 } 366 }
362 367
363 gfx::NativeViewId RenderWidgetHostViewChildFrame::GetParentForWindowlessPlugin() 368 gfx::NativeViewId RenderWidgetHostViewChildFrame::GetParentForWindowlessPlugin()
364 const { 369 const {
365 return NULL; 370 return NULL;
366 } 371 }
367 #endif // defined(OS_WIN) 372 #endif // defined(OS_WIN)
368 373
369 } // namespace content 374 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698