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

Unified Diff: net/base/elements_upload_data_stream.h

Issue 648543005: Replace newly added OVERRIDE with its C++11 counterparts in src/net (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
« no previous file with comments | « net/base/chunked_upload_data_stream.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/elements_upload_data_stream.h
diff --git a/net/base/elements_upload_data_stream.h b/net/base/elements_upload_data_stream.h
index 194deb31104261566f080deef69e8ff82c7e56f3..1a008fca4482b1e67482158efd2347e497c00690 100644
--- a/net/base/elements_upload_data_stream.h
+++ b/net/base/elements_upload_data_stream.h
@@ -36,12 +36,12 @@ class NET_EXPORT ElementsUploadDataStream : public UploadDataStream {
private:
// UploadDataStream implementation.
- virtual bool IsInMemory() const OVERRIDE;
+ virtual bool IsInMemory() const override;
virtual const ScopedVector<UploadElementReader>*
- GetElementReaders() const OVERRIDE;
- virtual int InitInternal() OVERRIDE;
- virtual int ReadInternal(IOBuffer* buf, int buf_len) OVERRIDE;
- virtual void ResetInternal() OVERRIDE;
+ GetElementReaders() const override;
+ virtual int InitInternal() override;
+ virtual int ReadInternal(IOBuffer* buf, int buf_len) override;
+ virtual void ResetInternal() override;
// Runs Init() for all element readers.
// This method is used to implement InitInternal().
« no previous file with comments | « net/base/chunked_upload_data_stream.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698