| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // Provides empty BalsaVisitorInterface overrides for convenience. | 5 // Provides empty BalsaVisitorInterface overrides for convenience. |
| 6 // Intended to be used as a base class for BalsaVisitorInterface subclasses that | 6 // Intended to be used as a base class for BalsaVisitorInterface subclasses that |
| 7 // only need to override a small number of methods. | 7 // only need to override a small number of methods. |
| 8 | 8 |
| 9 #ifndef NET_TOOLS_FLIP_SERVER_NOOP_BALSA_VISITOR_H_ | 9 #ifndef NET_TOOLS_BALSA_NOOP_BALSA_VISITOR_H_ |
| 10 #define NET_TOOLS_FLIP_SERVER_NOOP_BALSA_VISITOR_H_ | 10 #define NET_TOOLS_BALSA_NOOP_BALSA_VISITOR_H_ |
| 11 | 11 |
| 12 #include "net/tools/flip_server/balsa_visitor_interface.h" | 12 #include "net/tools/balsa/balsa_visitor_interface.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 | 15 |
| 16 // See file comment above. | 16 // See file comment above. |
| 17 class NoOpBalsaVisitor : public BalsaVisitorInterface { | 17 class NoOpBalsaVisitor : public BalsaVisitorInterface { |
| 18 public: | 18 public: |
| 19 NoOpBalsaVisitor() { } | 19 NoOpBalsaVisitor() { } |
| 20 virtual ~NoOpBalsaVisitor() { } | 20 virtual ~NoOpBalsaVisitor() { } |
| 21 | 21 |
| 22 virtual void ProcessBodyInput(const char* input, size_t size) OVERRIDE { } | 22 virtual void ProcessBodyInput(const char* input, size_t size) OVERRIDE { } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 50 virtual void HandleHeaderWarning(BalsaFrame* framer) OVERRIDE { } | 50 virtual void HandleHeaderWarning(BalsaFrame* framer) OVERRIDE { } |
| 51 virtual void HandleChunkingError(BalsaFrame* framer) OVERRIDE { } | 51 virtual void HandleChunkingError(BalsaFrame* framer) OVERRIDE { } |
| 52 virtual void HandleBodyError(BalsaFrame* framer) OVERRIDE { } | 52 virtual void HandleBodyError(BalsaFrame* framer) OVERRIDE { } |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 DISALLOW_COPY_AND_ASSIGN(NoOpBalsaVisitor); | 55 DISALLOW_COPY_AND_ASSIGN(NoOpBalsaVisitor); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace net | 58 } // namespace net |
| 59 | 59 |
| 60 #endif // NET_TOOLS_FLIP_SERVER_NOOP_BALSA_VISITOR_H_ | 60 #endif // NET_TOOLS_BALSA_NOOP_BALSA_VISITOR_H_ |
| OLD | NEW |