diff options
author | mohan.reddy <mohan.reddy@samsung.com> | 2014-10-08 22:24:13 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-09 05:24:24 +0000 |
commit | 7fc3ac7d5ac957a99031b20a8c54a197166b292a (patch) | |
tree | b091b4c401c8f4c0a49f38bb54658be00d81503f /content/browser/byte_stream.cc | |
parent | 4569c42c7444d4468f2c125a42ebadc433b7d51c (diff) | |
download | chromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.zip chromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.tar.gz chromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.tar.bz2 |
Replace FINAL and OVERRIDE with their C++11 counterparts in content
This step is a giant search and replace for OVERRIDE and FINAL to
replace them with their lowercase versions.
BUG=417463
Review URL: https://codereview.chromium.org/637183002
Cr-Commit-Position: refs/heads/master@{#298804}
Diffstat (limited to 'content/browser/byte_stream.cc')
-rw-r--r-- | content/browser/byte_stream.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/content/browser/byte_stream.cc b/content/browser/byte_stream.cc index 0cd3cd8..669f378 100644 --- a/content/browser/byte_stream.cc +++ b/content/browser/byte_stream.cc @@ -57,11 +57,11 @@ class ByteStreamWriterImpl : public ByteStreamWriter { // Overridden from ByteStreamWriter. virtual bool Write(scoped_refptr<net::IOBuffer> buffer, - size_t byte_count) OVERRIDE; - virtual void Flush() OVERRIDE; - virtual void Close(int status) OVERRIDE; - virtual void RegisterCallback(const base::Closure& source_callback) OVERRIDE; - virtual size_t GetTotalBufferedBytes() const OVERRIDE; + size_t byte_count) override; + virtual void Flush() override; + virtual void Close(int status) override; + virtual void RegisterCallback(const base::Closure& source_callback) override; + virtual size_t GetTotalBufferedBytes() const override; // PostTask target from |ByteStreamReaderImpl::MaybeUpdateInput|. static void UpdateWindow(scoped_refptr<LifetimeFlag> lifetime_flag, @@ -117,9 +117,9 @@ class ByteStreamReaderImpl : public ByteStreamReader { // Overridden from ByteStreamReader. virtual StreamState Read(scoped_refptr<net::IOBuffer>* data, - size_t* length) OVERRIDE; - virtual int GetStatus() const OVERRIDE; - virtual void RegisterCallback(const base::Closure& sink_callback) OVERRIDE; + size_t* length) override; + virtual int GetStatus() const override; + virtual void RegisterCallback(const base::Closure& sink_callback) override; // PostTask target from |ByteStreamWriterImpl::Write| and // |ByteStreamWriterImpl::Close|. |