| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/spdy/spdy_framer.h" | 5 #include "net/spdy/spdy_framer.h" |
| 6 | 6 |
| 7 #include "base/scoped_ptr.h" | 7 #include "base/scoped_ptr.h" |
| 8 #include "base/stats_counters.h" | 8 #include "base/stats_counters.h" |
| 9 | 9 |
| 10 #include "net/spdy/spdy_frame_builder.h" | 10 #include "net/spdy/spdy_frame_builder.h" |
| (...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1105 | 1105 |
| 1106 void SpdyFramer::set_enable_compression(bool value) { | 1106 void SpdyFramer::set_enable_compression(bool value) { |
| 1107 enable_compression_ = value; | 1107 enable_compression_ = value; |
| 1108 } | 1108 } |
| 1109 | 1109 |
| 1110 void SpdyFramer::set_enable_compression_default(bool value) { | 1110 void SpdyFramer::set_enable_compression_default(bool value) { |
| 1111 compression_default_ = value; | 1111 compression_default_ = value; |
| 1112 } | 1112 } |
| 1113 | 1113 |
| 1114 } // namespace spdy | 1114 } // namespace spdy |
| 1115 | |
| OLD | NEW |