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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_base.h

Issue 292113008: Plumbing for browser process to access text surrounding selection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@adb_install_humans
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
OLDNEW
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_BASE_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
7 7
8 #if defined(OS_MACOSX) 8 #if defined(OS_MACOSX)
9 #include <OpenGL/OpenGL.h> 9 #include <OpenGL/OpenGL.h>
10 #endif 10 #endif
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 virtual void GetScreenInfo(blink::WebScreenInfo* results) = 0; 309 virtual void GetScreenInfo(blink::WebScreenInfo* results) = 0;
310 310
311 // Gets the bounds of the window, in screen coordinates. 311 // Gets the bounds of the window, in screen coordinates.
312 virtual gfx::Rect GetBoundsInRootWindow() = 0; 312 virtual gfx::Rect GetBoundsInRootWindow() = 0;
313 313
314 virtual gfx::GLSurfaceHandle GetCompositingSurface() = 0; 314 virtual gfx::GLSurfaceHandle GetCompositingSurface() = 0;
315 315
316 virtual void SetScrollOffsetPinning( 316 virtual void SetScrollOffsetPinning(
317 bool is_pinned_to_left, bool is_pinned_to_right) = 0; 317 bool is_pinned_to_left, bool is_pinned_to_right) = 0;
318 318
319 virtual void OnTextSurroundingSelectionResponse(const base::string16& content,
320 unsigned start_offset,
321 unsigned end_offset) {};
dcheng 2014/05/21 21:05:38 Is there a reason this isn't pure virtual like mos
mlamouri (slow - plz ping) 2014/05/21 21:19:40 Making it pure virtual would require to have empty
322
319 #if defined(OS_ANDROID) 323 #if defined(OS_ANDROID)
320 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, 324 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect,
321 const SkBitmap& zoomed_bitmap) = 0; 325 const SkBitmap& zoomed_bitmap) = 0;
322 326
323 // Notifies the View that the renderer selection root bounds has changed. 327 // Notifies the View that the renderer selection root bounds has changed.
324 virtual void SelectionRootBoundsChanged(const gfx::Rect& bounds) = 0; 328 virtual void SelectionRootBoundsChanged(const gfx::Rect& bounds) = 0;
325 329
326 // Instructs the view to not drop the surface even when the view is hidden. 330 // Instructs the view to not drop the surface even when the view is hidden.
327 virtual void LockCompositingSurface() = 0; 331 virtual void LockCompositingSurface() = 0;
328 virtual void UnlockCompositingSurface() = 0; 332 virtual void UnlockCompositingSurface() = 0;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 uint32 renderer_frame_number_; 429 uint32 renderer_frame_number_;
426 430
427 base::OneShotTimer<RenderWidgetHostViewBase> flush_input_timer_; 431 base::OneShotTimer<RenderWidgetHostViewBase> flush_input_timer_;
428 432
429 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); 433 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase);
430 }; 434 };
431 435
432 } // namespace content 436 } // namespace content
433 437
434 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 438 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698