| Index: google_apis/gcm/base/socket_stream.h
|
| diff --git a/google_apis/gcm/base/socket_stream.h b/google_apis/gcm/base/socket_stream.h
|
| index 61aa1fefd5f3c421e8f62a3a3774b728c9ca4879..4a490f29a18e3a2e199741a441f691dce7ff860e 100644
|
| --- a/google_apis/gcm/base/socket_stream.h
|
| +++ b/google_apis/gcm/base/socket_stream.h
|
| @@ -66,10 +66,10 @@ class GCM_EXPORT SocketInputStream
|
| virtual ~SocketInputStream();
|
|
|
| // ZeroCopyInputStream implementation.
|
| - virtual bool Next(const void** data, int* size) OVERRIDE;
|
| - virtual void BackUp(int count) OVERRIDE;
|
| - virtual bool Skip(int count) OVERRIDE; // Not implemented.
|
| - virtual int64 ByteCount() const OVERRIDE;
|
| + virtual bool Next(const void** data, int* size) override;
|
| + virtual void BackUp(int count) override;
|
| + virtual bool Skip(int count) override; // Not implemented.
|
| + virtual int64 ByteCount() const override;
|
|
|
| // The remaining amount of valid data available to be read.
|
| int UnreadByteCount() const;
|
| @@ -162,9 +162,9 @@ class GCM_EXPORT SocketOutputStream
|
| virtual ~SocketOutputStream();
|
|
|
| // ZeroCopyOutputStream implementation.
|
| - virtual bool Next(void** data, int* size) OVERRIDE;
|
| - virtual void BackUp(int count) OVERRIDE;
|
| - virtual int64 ByteCount() const OVERRIDE;
|
| + virtual bool Next(void** data, int* size) override;
|
| + virtual void BackUp(int count) override;
|
| + virtual int64 ByteCount() const override;
|
|
|
| // Writes the buffer into the Socket.
|
| net::Error Flush(const base::Closure& callback);
|
|
|