| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/quic/quic_framer.h" | 5 #include "net/quic/quic_framer.h" | 
| 6 | 6 | 
| 7 #include "base/hash_tables.h" | 7 #include "base/containers/hash_tables.h" | 
| 8 #include "net/quic/crypto/quic_decrypter.h" | 8 #include "net/quic/crypto/quic_decrypter.h" | 
| 9 #include "net/quic/crypto/quic_encrypter.h" | 9 #include "net/quic/crypto/quic_encrypter.h" | 
| 10 #include "net/quic/quic_data_reader.h" | 10 #include "net/quic/quic_data_reader.h" | 
| 11 #include "net/quic/quic_data_writer.h" | 11 #include "net/quic/quic_data_writer.h" | 
| 12 | 12 | 
| 13 using base::StringPiece; | 13 using base::StringPiece; | 
| 14 using std::make_pair; | 14 using std::make_pair; | 
| 15 using std::map; | 15 using std::map; | 
| 16 using std::numeric_limits; | 16 using std::numeric_limits; | 
| 17 using std::string; | 17 using std::string; | 
| (...skipping 1663 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1681 | 1681 | 
| 1682 bool QuicFramer::RaiseError(QuicErrorCode error) { | 1682 bool QuicFramer::RaiseError(QuicErrorCode error) { | 
| 1683   DLOG(INFO) << detailed_error_; | 1683   DLOG(INFO) << detailed_error_; | 
| 1684   set_error(error); | 1684   set_error(error); | 
| 1685   visitor_->OnError(this); | 1685   visitor_->OnError(this); | 
| 1686   reader_.reset(NULL); | 1686   reader_.reset(NULL); | 
| 1687   return false; | 1687   return false; | 
| 1688 } | 1688 } | 
| 1689 | 1689 | 
| 1690 }  // namespace net | 1690 }  // namespace net | 
| OLD | NEW | 
|---|