diff options
author | satish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-28 14:58:50 +0000 |
---|---|---|
committer | satish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-28 14:58:50 +0000 |
commit | c157480e569c0c0a7077e6aa204765dcb6e556ca (patch) | |
tree | 2cfbbfd53b1e6386485aacfbe4da733c735c9294 /content/port | |
parent | 90893aec8c665b5fcca2efba798039391a772626 (diff) | |
download | chromium_src-c157480e569c0c0a7077e6aa204765dcb6e556ca.zip chromium_src-c157480e569c0c0a7077e6aa204765dcb6e556ca.tar.gz chromium_src-c157480e569c0c0a7077e6aa204765dcb6e556ca.tar.bz2 |
Fix the build break in Android Clang (dbg) FYI builder.
This is a follow up to CL https://chromiumcodereview.appspot.com/10985031 where
method WebContentsViewAndroid::ConfirmTouchEvent() was added with an OVERRIDE
keyword but no base class had the virtual function defined.
BUG=none
TEST=Android Clang (dbg) FYI builder turns green.
Review URL: https://chromiumcodereview.appspot.com/10984087
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159261 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/port')
-rw-r--r-- | content/port/browser/render_view_host_delegate_view.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/port/browser/render_view_host_delegate_view.h b/content/port/browser/render_view_host_delegate_view.h index b59d6e0..f2b02ff5 100644 --- a/content/port/browser/render_view_host_delegate_view.h +++ b/content/port/browser/render_view_host_delegate_view.h @@ -67,6 +67,12 @@ class CONTENT_EXPORT RenderViewHostDelegateView { // retrieved by doing a Shift-Tab. virtual void TakeFocus(bool reverse) {} +#if defined(OS_ANDROID) + // Called when an unhandled touch event is sent back from the renderer. + // TODO(joth): This should be pure virtual. + virtual void ConfirmTouchEvent(bool handled) {} +#endif + protected: virtual ~RenderViewHostDelegateView() {} }; |