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 #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 Loading... |
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 |
OLD | NEW |