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

Unified Diff: net/spdy/spdy_no_op_visitor.cc

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 years, 8 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/spdy/spdy_no_op_visitor.h ('k') | net/spdy/spdy_pinnable_buffer_piece.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_no_op_visitor.cc
diff --git a/net/spdy/spdy_no_op_visitor.cc b/net/spdy/spdy_no_op_visitor.cc
deleted file mode 100644
index ddf3f6ef40180382df47bbcece8586b890d0236b..0000000000000000000000000000000000000000
--- a/net/spdy/spdy_no_op_visitor.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/spdy/spdy_no_op_visitor.h"
-
-#include <type_traits>
-
-namespace net {
-namespace test {
-
-SpdyNoOpVisitor::SpdyNoOpVisitor() {
- static_assert(std::is_abstract<SpdyNoOpVisitor>::value == false,
- "Need to update SpdyNoOpVisitor.");
-}
-SpdyNoOpVisitor::~SpdyNoOpVisitor() {}
-
-net::SpdyHeadersHandlerInterface* SpdyNoOpVisitor::OnHeaderFrameStart(
- SpdyStreamId stream_id) {
- return this;
-}
-
-bool SpdyNoOpVisitor::OnUnknownFrame(SpdyStreamId stream_id,
- uint8_t frame_type) {
- return true;
-}
-
-} // namespace test
-} // namespace net
« no previous file with comments | « net/spdy/spdy_no_op_visitor.h ('k') | net/spdy/spdy_pinnable_buffer_piece.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698