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

Unified Diff: android_webview/native/aw_contents_io_thread_client_impl.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
Index: android_webview/native/aw_contents_io_thread_client_impl.h
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 27ce4e51b3a2374210971140556912e4bb0d81a1..4c9d555186039c0e4817b33f30e41ca7bee1ad6c 100644
--- a/android_webview/native/aw_contents_io_thread_client_impl.h
+++ b/android_webview/native/aw_contents_io_thread_client_impl.h
@@ -42,26 +42,26 @@ class AwContentsIoThreadClientImpl : public AwContentsIoThreadClient {
// Java object.
AwContentsIoThreadClientImpl(bool pending_associate,
const base::android::JavaRef<jobject>& jclient);
- virtual ~AwContentsIoThreadClientImpl() OVERRIDE;
+ virtual ~AwContentsIoThreadClientImpl() override;
// Implementation of AwContentsIoThreadClient.
- virtual bool PendingAssociation() const OVERRIDE;
- virtual CacheMode GetCacheMode() const OVERRIDE;
+ virtual bool PendingAssociation() const override;
+ virtual CacheMode GetCacheMode() const override;
virtual scoped_ptr<AwWebResourceResponse> ShouldInterceptRequest(
const GURL& location,
- const net::URLRequest* request) OVERRIDE;
- virtual bool ShouldBlockContentUrls() const OVERRIDE;
- virtual bool ShouldBlockFileUrls() const OVERRIDE;
- virtual bool ShouldAcceptThirdPartyCookies() const OVERRIDE;
- virtual bool ShouldBlockNetworkLoads() const OVERRIDE;
+ const net::URLRequest* request) override;
+ virtual bool ShouldBlockContentUrls() const override;
+ virtual bool ShouldBlockFileUrls() const override;
+ virtual bool ShouldAcceptThirdPartyCookies() const override;
+ virtual bool ShouldBlockNetworkLoads() const override;
virtual void NewDownload(const GURL& url,
const std::string& user_agent,
const std::string& content_disposition,
const std::string& mime_type,
- int64 content_length) OVERRIDE;
+ int64 content_length) override;
virtual void NewLoginRequest(const std::string& realm,
const std::string& account,
- const std::string& args) OVERRIDE;
+ const std::string& args) override;
private:
bool pending_association_;
« no previous file with comments | « android_webview/native/aw_contents_client_bridge.h ('k') | android_webview/native/aw_contents_io_thread_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698