summaryrefslogtreecommitdiffstats
path: root/content/renderer/render_widget.h
diff options
context:
space:
mode:
authorjdduke@chromium.org <jdduke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-29 22:34:11 +0000
committerjdduke@chromium.org <jdduke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-29 22:34:11 +0000
commit3abba2674d55de917a2ac4d3d2534746845dd076 (patch)
tree69b8c74961b5045b23526b5e48ccf1d3698ba5b7 /content/renderer/render_widget.h
parent3715acb1dee199cfce7a422b5d957419973bcc6c (diff)
downloadchromium_src-3abba2674d55de917a2ac4d3d2534746845dd076.zip
chromium_src-3abba2674d55de917a2ac4d3d2534746845dd076.tar.gz
chromium_src-3abba2674d55de917a2ac4d3d2534746845dd076.tar.bz2
Revert of Chromium plumbing to use the selection root bounds. (https://codereview.chromium.org/186753002/)
Reason for revert: The Android plumbing to use the root selection bounds has been removed, and the visibility calculation will soon be performed by the compositor (see crbug.com/135959). Original issue's description: > Chromium plumbing to use the selection root bounds. > > This is asking the selection root bounds to Blink and send it back to > the RenderWidgetHostView implementation in the browser process. > > BUG=236033 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=257199 TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/306803002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273628 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/render_widget.h')
-rw-r--r--content/renderer/render_widget.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/content/renderer/render_widget.h b/content/renderer/render_widget.h
index fac7178..8ed0c40 100644
--- a/content/renderer/render_widget.h
+++ b/content/renderer/render_widget.h
@@ -509,12 +509,6 @@ class CONTENT_EXPORT RenderWidget
// by script, not by user input.
virtual void didUpdateTextOfFocusedElementByNonUserInput();
-#if defined(OS_ANDROID)
- // Checks if the selection root bounds have changed. If they have changed, the
- // new value will be sent to the browser process.
- virtual void UpdateSelectionRootBounds();
-#endif
-
// Creates a 3D context associated with this view.
scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateGraphicsContext3D();
@@ -631,11 +625,6 @@ class CONTENT_EXPORT RenderWidget
gfx::Rect selection_focus_rect_;
gfx::Rect selection_anchor_rect_;
- // Stores the current selection root bounds.
-#if defined(OS_ANDROID)
- gfx::Rect selection_root_rect_;
-#endif
-
// Stores the current composition character bounds.
std::vector<gfx::Rect> composition_character_bounds_;