0

Fix render_widget_host_view_android.h

This adds the virtual pure function to base class. The overridden version was upstreamed without the base class changes and causing a clang build error.

BUG=143931


Review URL: https://chromiumcodereview.appspot.com/10918283

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157928 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
yusufo@chromium.org
2012-09-21 04:50:28 +00:00
parent 8b27630e43
commit abeb48c1cf
2 changed files with 5 additions and 0 deletions
content

@ -142,6 +142,7 @@ class TestRenderWidgetHostView : public RenderWidgetHostViewBase {
TransportDIB::Handle transport_dib) OVERRIDE;
#elif defined(OS_ANDROID)
virtual void StartContentIntent(const GURL&) OVERRIDE;
virtual void DidSetNeedTouchEvents(bool need_touch_events) OVERRIDE {}
#elif defined(OS_WIN) && !defined(USE_AURA)
virtual void WillWmDestroy() OVERRIDE;
#endif

@ -222,6 +222,10 @@ class CONTENT_EXPORT RenderWidgetHostViewPort : public RenderWidgetHostView {
TransportDIB::Handle transport_dib) = 0;
#endif
#if defined(OS_ANDROID)
virtual void DidSetNeedTouchEvents(bool need_touch_events) = 0;
#endif
virtual void AcceleratedSurfaceNew(
int32 width_in_pixel,
int32 height_in_pixel,