From 4c54f235af8a8f3754d22790c20d1b33cb7ded76 Mon Sep 17 00:00:00 2001 From: "jknotten@chromium.org" Date: Tue, 2 Oct 2012 19:56:48 +0000 Subject: 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 --- android_webview/native/aw_contents_io_thread_client_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'android_webview') 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& jclient); AwContentsIoThreadClientImpl(const base::android::JavaRef& jclient); - ~AwContentsIoThreadClientImpl(); + virtual ~AwContentsIoThreadClientImpl() OVERRIDE; // Implementation of AwContentsIoThreadClient. virtual scoped_ptr ShouldInterceptRequest( -- cgit v1.1