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

Unified Diff: net/tools/quic/quic_in_memory_cache.cc

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment 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/tools/quic/quic_epoll_connection_helper_test.cc ('k') | net/tools/quic/quic_in_memory_cache_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_in_memory_cache.cc
diff --git a/net/tools/quic/quic_in_memory_cache.cc b/net/tools/quic/quic_in_memory_cache.cc
index 6754cf26480be0701e44dc208570350665eaa056..c90142ca847f8faee8d1bac190e6ddcee203cdc3 100644
--- a/net/tools/quic/quic_in_memory_cache.cc
+++ b/net/tools/quic/quic_in_memory_cache.cc
@@ -29,22 +29,22 @@ namespace {
class CachingBalsaVisitor : public NoOpBalsaVisitor {
public:
CachingBalsaVisitor() : done_framing_(false) {}
- virtual void ProcessBodyData(const char* input, size_t size) OVERRIDE {
+ virtual void ProcessBodyData(const char* input, size_t size) override {
AppendToBody(input, size);
}
- virtual void MessageDone() OVERRIDE {
+ virtual void MessageDone() override {
done_framing_ = true;
}
- virtual void HandleHeaderError(BalsaFrame* framer) OVERRIDE {
+ virtual void HandleHeaderError(BalsaFrame* framer) override {
UnhandledError();
}
- virtual void HandleHeaderWarning(BalsaFrame* framer) OVERRIDE {
+ virtual void HandleHeaderWarning(BalsaFrame* framer) override {
UnhandledError();
}
- virtual void HandleChunkingError(BalsaFrame* framer) OVERRIDE {
+ virtual void HandleChunkingError(BalsaFrame* framer) override {
UnhandledError();
}
- virtual void HandleBodyError(BalsaFrame* framer) OVERRIDE {
+ virtual void HandleBodyError(BalsaFrame* framer) override {
UnhandledError();
}
void UnhandledError() {
« no previous file with comments | « net/tools/quic/quic_epoll_connection_helper_test.cc ('k') | net/tools/quic/quic_in_memory_cache_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698