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

Unified Diff: android_webview/native/input_stream_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/input_stream_impl.h
diff --git a/android_webview/native/input_stream_impl.h b/android_webview/native/input_stream_impl.h
index 164aa5f4ce1d0ad298e3ac9b8ccb2200023e8084..4a950e806ed4fab7dcdd1e4724a73ec23071a01a 100644
--- a/android_webview/native/input_stream_impl.h
+++ b/android_webview/native/input_stream_impl.h
@@ -32,9 +32,9 @@ class InputStreamImpl : public InputStream {
const jobject jobj() const { return jobject_.obj(); }
// InputStream implementation.
- virtual bool BytesAvailable(int* bytes_available) const OVERRIDE;
- virtual bool Skip(int64_t n, int64_t* bytes_skipped) OVERRIDE;
- virtual bool Read(net::IOBuffer* dest, int length, int* bytes_read) OVERRIDE;
+ virtual bool BytesAvailable(int* bytes_available) const override;
+ virtual bool Skip(int64_t n, int64_t* bytes_skipped) override;
+ virtual bool Read(net::IOBuffer* dest, int length, int* bytes_read) override;
protected:
// Parameterless constructor exposed for testing.
InputStreamImpl();

Powered by Google App Engine
This is Rietveld 408576698