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

Unified Diff: content/browser/streams/stream_unittest.cc

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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 | « content/browser/streams/stream_handle_impl.h ('k') | content/browser/streams/stream_url_request_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/streams/stream_unittest.cc
diff --git a/content/browser/streams/stream_unittest.cc b/content/browser/streams/stream_unittest.cc
index a2d959305fa25bd1276c3b8967f843344ca9f4a9..0b93ab0c94197a605d5972199ef9a0bd529853da 100644
--- a/content/browser/streams/stream_unittest.cc
+++ b/content/browser/streams/stream_unittest.cc
@@ -16,7 +16,7 @@ class StreamTest : public testing::Test {
public:
StreamTest() : producing_seed_key_(0) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
registry_.reset(new StreamRegistry());
}
@@ -76,7 +76,7 @@ class TestStreamReader : public StreamReadObserver {
}
}
- virtual void OnDataAvailable(Stream* stream) OVERRIDE {
+ virtual void OnDataAvailable(Stream* stream) override {
Read(stream);
}
@@ -102,10 +102,10 @@ class TestStreamWriter : public StreamWriteObserver {
stream->AddData(buffer, buffer_size);
}
- virtual void OnSpaceAvailable(Stream* stream) OVERRIDE {
+ virtual void OnSpaceAvailable(Stream* stream) override {
}
- virtual void OnClose(Stream* stream) OVERRIDE {
+ virtual void OnClose(Stream* stream) override {
}
};
« no previous file with comments | « content/browser/streams/stream_handle_impl.h ('k') | content/browser/streams/stream_url_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698