summaryrefslogtreecommitdiffstats
path: root/android_webview
diff options
context:
space:
mode:
authorjknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-02 19:56:48 +0000
committerjknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-02 19:56:48 +0000
commit4c54f235af8a8f3754d22790c20d1b33cb7ded76 (patch)
treeddeae57ff541c0b9b2354e102d8d46e977858d70 /android_webview
parentb526deaab0ef437471340a81ff9448150f585f11 (diff)
downloadchromium_src-4c54f235af8a8f3754d22790c20d1b33cb7ded76.zip
chromium_src-4c54f235af8a8f3754d22790c20d1b33cb7ded76.tar.gz
chromium_src-4c54f235af8a8f3754d22790c20d1b33cb7ded76.tar.bz2
Fix style error in AwContentsIoThreadClientImpl
The destructor must be virtual declared OVERRIDE. This is required by the clang style checker. See http://dev.chromium.org/developers/coding-style/chromium-style-checker-errors Review URL: https://chromiumcodereview.appspot.com/11038020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159744 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview')
-rw-r--r--android_webview/native/aw_contents_io_thread_client_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/native/aw_contents_io_thread_client_impl.h b/android_webview/native/aw_contents_io_thread_client_impl.h
index c6ffa33f..1fa89dc 100644
--- a/android_webview/native/aw_contents_io_thread_client_impl.h
+++ b/android_webview/native/aw_contents_io_thread_client_impl.h
@@ -31,7 +31,7 @@ class AwContentsIoThreadClientImpl : public AwContentsIoThreadClient {
const base::android::JavaRef<jobject>& jclient);
AwContentsIoThreadClientImpl(const base::android::JavaRef<jobject>& jclient);
- ~AwContentsIoThreadClientImpl();
+ virtual ~AwContentsIoThreadClientImpl() OVERRIDE;
// Implementation of AwContentsIoThreadClient.
virtual scoped_ptr<InterceptedRequestData> ShouldInterceptRequest(