| Index: content/browser/android/content_view_core_impl.h
|
| diff --git a/content/browser/android/content_view_core_impl.h b/content/browser/android/content_view_core_impl.h
|
| index 662ac0fb98b8c4d13a22d25a5c57ac6d48935209..0d7db180e48fa96cb186b6e32a426b3a47f0a061 100644
|
| --- a/content/browser/android/content_view_core_impl.h
|
| +++ b/content/browser/android/content_view_core_impl.h
|
| @@ -192,12 +192,9 @@ class ContentViewCoreImpl : public ContentViewCore,
|
| void ConfirmTouchEvent(bool handled);
|
| void DidSetNeedTouchEvents(bool need_touch_events);
|
| void OnSelectionChanged(const std::string& text);
|
| - void OnSelectionBoundsChanged(int startx,
|
| - int starty,
|
| - base::i18n::TextDirection start_dir,
|
| - int endx,
|
| - int endy,
|
| - base::i18n::TextDirection end_dir);
|
| + virtual void OnSelectionBoundsChanged(
|
| + const gfx::Rect& start_rect, base::i18n::TextDirection start_dir,
|
| + const gfx::Rect& end_rect, base::i18n::TextDirection end_dir) OVERRIDE;
|
|
|
| void StartContentIntent(const GURL& content_url);
|
|
|
|
|