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

Unified Diff: android_webview/native/input_stream_impl.h

Issue 893343002: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 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 4a950e806ed4fab7dcdd1e4724a73ec23071a01a..aebd7aced9b51ab3e65c88e308b58964b8549895 100644
--- a/android_webview/native/input_stream_impl.h
+++ b/android_webview/native/input_stream_impl.h
@@ -26,15 +26,16 @@ class InputStreamImpl : public InputStream {
// |stream| should be an instance of the InputStream Java class.
// |stream| can't be null.
InputStreamImpl(const base::android::JavaRef<jobject>& stream);
- virtual ~InputStreamImpl();
+ ~InputStreamImpl() override;
// Gets the underlying Java object. Guaranteed non-NULL.
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;
+ bool BytesAvailable(int* bytes_available) const override;
+ bool Skip(int64_t n, int64_t* bytes_skipped) override;
+ bool Read(net::IOBuffer* dest, int length, int* bytes_read) override;
+
protected:
// Parameterless constructor exposed for testing.
InputStreamImpl();
« no previous file with comments | « android_webview/native/external_video_surface_container_impl.h ('k') | android_webview/native/input_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698