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

Unified Diff: android_webview/native/aw_web_resource_response_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_web_resource_response_impl.h
diff --git a/android_webview/native/aw_web_resource_response_impl.h b/android_webview/native/aw_web_resource_response_impl.h
index 2cef1c0e8908f9191a25c95eeb79b6c8a6e9a919..a33db6eb439b67f18dd06f651cd64ed1deb6c401 100644
--- a/android_webview/native/aw_web_resource_response_impl.h
+++ b/android_webview/native/aw_web_resource_response_impl.h
@@ -25,15 +25,15 @@ class AwWebResourceResponseImpl : public AwWebResourceResponse {
AwWebResourceResponseImpl(const base::android::JavaRef<jobject>& obj);
virtual ~AwWebResourceResponseImpl();
- virtual scoped_ptr<InputStream> GetInputStream(JNIEnv* env) const OVERRIDE;
- virtual bool GetMimeType(JNIEnv* env, std::string* mime_type) const OVERRIDE;
- virtual bool GetCharset(JNIEnv* env, std::string* charset) const OVERRIDE;
+ virtual scoped_ptr<InputStream> GetInputStream(JNIEnv* env) const override;
+ virtual bool GetMimeType(JNIEnv* env, std::string* mime_type) const override;
+ virtual bool GetCharset(JNIEnv* env, std::string* charset) const override;
virtual bool GetStatusInfo(JNIEnv* env,
int* status_code,
- std::string* reason_phrase) const OVERRIDE;
+ std::string* reason_phrase) const override;
virtual bool GetResponseHeaders(
JNIEnv* env,
- net::HttpResponseHeaders* headers) const OVERRIDE;
+ net::HttpResponseHeaders* headers) const override;
private:
base::android::ScopedJavaGlobalRef<jobject> java_object_;

Powered by Google App Engine
This is Rietveld 408576698