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

Unified Diff: net/tools/balsa/balsa_frame.h

Issue 1499793003: Fix classes that have too many virtuals for inline constructors. Base URL: https://chromium.googlesource.com/chromium/src.git@enable-virtuals-as-complexity
Patch Set: Finish fixing the codebase that's accessible from Linux. Created 5 years 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
Index: net/tools/balsa/balsa_frame.h
diff --git a/net/tools/balsa/balsa_frame.h b/net/tools/balsa/balsa_frame.h
index 27f27ea53d2cf4121339f342049ed557511ffcef..bece9ab1a2014d7d38e6eeca27e9b4a7280a70ff 100644
--- a/net/tools/balsa/balsa_frame.h
+++ b/net/tools/balsa/balsa_frame.h
@@ -200,6 +200,10 @@ class BalsaFrame {
private:
class DoNothingBalsaVisitor : public BalsaVisitorInterface {
+ public:
+ DoNothingBalsaVisitor();
+
+ private:
void ProcessBodyInput(const char* input, size_t size) override {}
void ProcessBodyData(const char* input, size_t size) override {}
void ProcessHeaderInput(const char* input, size_t size) override {}
@@ -258,4 +262,3 @@ class BalsaFrame {
} // namespace net
#endif // NET_TOOLS_BALSA_BALSA_FRAME_H_
-

Powered by Google App Engine
This is Rietveld 408576698