Chromium Code Reviews| Index: content/renderer/renderer_webkitplatformsupport_impl.h |
| diff --git a/content/renderer/renderer_webkitplatformsupport_impl.h b/content/renderer/renderer_webkitplatformsupport_impl.h |
| index 1a55021faff1b5408fa279fb846796a043a80c08..5cc159537b6b291a45312924321632056b32b6ed 100644 |
| --- a/content/renderer/renderer_webkitplatformsupport_impl.h |
| +++ b/content/renderer/renderer_webkitplatformsupport_impl.h |
| @@ -145,10 +145,8 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl |
| WebKit::WebStorageQuotaType, |
| WebKit::WebStorageQuotaCallbacks*) OVERRIDE; |
| -#if defined(OS_ANDROID) |
| - virtual void vibrate(unsigned int milliseconds); |
| - virtual void cancelVibration(); |
| -#endif // defined(OS_ANDROID) |
| + virtual void vibrate(unsigned int milliseconds) OVERRIDE; |
|
Michael van Ouwerkerk
2013/11/08 14:41:07
Don't add OVERRIDE here. It is generally not used
ostap
2013/11/08 20:33:41
Done.
|
| + virtual void cancelVibration() OVERRIDE; |
|
Michael van Ouwerkerk
2013/11/08 14:41:07
Also don't add OVERRIDE here.
ostap
2013/11/08 20:33:41
Done.
|
| // Disables the WebSandboxSupport implementation for testing. |
| // Tests that do not set up a full sandbox environment should call |