Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1493)

Unified Diff: android_webview/native/aw_contents_client_bridge.h

Issue 623833003: replace OVERRIDE and FINAL with override and final in android_webview/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « android_webview/native/aw_contents.h ('k') | android_webview/native/aw_contents_io_thread_client_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_contents_client_bridge.h
diff --git a/android_webview/native/aw_contents_client_bridge.h b/android_webview/native/aw_contents_client_bridge.h
index 3c97f333b93873f9815d73a2d5512fe8594a77da..d50fa62911183666495b45151cbc0c4c88af58bb 100644
--- a/android_webview/native/aw_contents_client_bridge.h
+++ b/android_webview/native/aw_contents_client_bridge.h
@@ -37,10 +37,10 @@ class AwContentsClientBridge : public AwContentsClientBridgeBase {
net::X509Certificate* cert,
const GURL& request_url,
const base::Callback<void(bool)>& callback,
- bool* cancel_request) OVERRIDE;
+ bool* cancel_request) override;
virtual void SelectClientCertificate(
net::SSLCertRequestInfo* cert_request_info,
- const SelectCertificateCallback& callback) OVERRIDE;
+ const SelectCertificateCallback& callback) override;
virtual void RunJavaScriptDialog(
content::JavaScriptMessageType message_type,
@@ -48,13 +48,13 @@ class AwContentsClientBridge : public AwContentsClientBridgeBase {
const base::string16& message_text,
const base::string16& default_prompt_text,
const content::JavaScriptDialogManager::DialogClosedCallback& callback)
- OVERRIDE;
+ override;
virtual void RunBeforeUnloadDialog(
const GURL& origin_url,
const base::string16& message_text,
const content::JavaScriptDialogManager::DialogClosedCallback& callback)
- OVERRIDE;
- virtual bool ShouldOverrideUrlLoading(const base::string16& url) OVERRIDE;
+ override;
+ virtual bool ShouldOverrideUrlLoading(const base::string16& url) override;
// Methods called from Java.
void ProceedSslError(JNIEnv* env, jobject obj, jboolean proceed, jint id);
« no previous file with comments | « android_webview/native/aw_contents.h ('k') | android_webview/native/aw_contents_io_thread_client_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698