| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef NET_SPDY_SPDY_BUFFER_H_ | 5 #ifndef NET_SPDY_SPDY_BUFFER_H_ |
| 6 #define NET_SPDY_SPDY_BUFFER_H_ | 6 #define NET_SPDY_SPDY_BUFFER_H_ |
| 7 | 7 |
| 8 #include <cstddef> | 8 #include <cstddef> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 const scoped_refptr<SharedFrame> shared_frame_; | 99 const scoped_refptr<SharedFrame> shared_frame_; |
| 100 std::vector<ConsumeCallback> consume_callbacks_; | 100 std::vector<ConsumeCallback> consume_callbacks_; |
| 101 size_t offset_; | 101 size_t offset_; |
| 102 | 102 |
| 103 DISALLOW_COPY_AND_ASSIGN(SpdyBuffer); | 103 DISALLOW_COPY_AND_ASSIGN(SpdyBuffer); |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace net | 106 } // namespace net |
| 107 | 107 |
| 108 #endif // NET_SPDY_SPDY_BUFFER_H_ | 108 #endif // NET_SPDY_SPDY_BUFFER_H_ |
| OLD | NEW |