| 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();
|
|
|