Chromium Code Reviews| 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 4a602133fd50169ed1ad79f7ea28419ffd9fe950..42ae0cba8a9c318e1b834b9bcda9bbda607f4787 100644 |
| --- a/content/browser/android/content_view_core_impl.h |
| +++ b/content/browser/android/content_view_core_impl.h |
| @@ -196,12 +196,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; |
|
nilesh
2012/10/10 20:35:42
Unless I am missing something, you need to add thi
Iain Merrick
2012/10/11 09:51:23
Argh, good catch! I need to add content_view_core.
|
| void StartContentIntent(const GURL& content_url); |