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

Side by Side Diff: net/tools/balsa/balsa_frame.cc

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 unified diff | Download patch
OLDNEW
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 #include "net/tools/balsa/balsa_frame.h" 5 #include "net/tools/balsa/balsa_frame.h"
6 6
7 // Visual C++ defines _M_IX86_FP as 2 if the /arch:SSE2 compiler option is 7 // Visual C++ defines _M_IX86_FP as 2 if the /arch:SSE2 compiler option is
8 // specified. 8 // specified.
9 #if !defined(__SSE2__) && _M_IX86_FP == 2 9 #if !defined(__SSE2__) && _M_IX86_FP == 2
10 #define __SSE2__ 1 10 #define __SSE2__ 1
(...skipping 1555 matching lines...) Expand 10 before | Expand all | Expand 10 after
1566 << BalsaFrameEnums::ParseStateToString(parse_state_) 1566 << BalsaFrameEnums::ParseStateToString(parse_state_)
1567 << "$$$$$$$$$$$$$$$" 1567 << "$$$$$$$$$$$$$$$"
1568 << " consumed: " << (current - input); 1568 << " consumed: " << (current - input);
1569 if (Error()) { 1569 if (Error()) {
1570 LOG(INFO) << BalsaFrameEnums::ErrorCodeToString(ErrorCode()); 1570 LOG(INFO) << BalsaFrameEnums::ErrorCodeToString(ErrorCode());
1571 } 1571 }
1572 #endif // DEBUGFRAMER 1572 #endif // DEBUGFRAMER
1573 return current - input; 1573 return current - input;
1574 } 1574 }
1575 1575
1576 BalsaFrame::DoNothingBalsaVisitor::DoNothingBalsaVisitor() = default;
1577
1576 } // namespace net 1578 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698