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 "remoting/client/plugin/compression.h" | 5 #include "remoting/client/plugin/compression.h" |
6 | 6 |
7 #include <assert.h> | 7 #include <assert.h> |
8 | 8 |
9 namespace remoting { | 9 namespace remoting { |
10 | 10 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 char* ZDecompressor::GetRawData() { | 102 char* ZDecompressor::GetRawData() { |
103 return &buffer_[0]; | 103 return &buffer_[0]; |
104 } | 104 } |
105 | 105 |
106 int ZDecompressor::GetRawSize() { | 106 int ZDecompressor::GetRawSize() { |
107 return buffer_.size(); | 107 return buffer_.size(); |
108 } | 108 } |
109 | 109 |
110 int ZDecompressor::GetCompressedSize() { | 110 int ZDecompressor::GetCompressedSize() { |
111 // I don't care. | 111 // I don't care. |
| 112 return 0; |
112 } | 113 } |
113 | 114 |
114 } // namespace remoting | 115 } // namespace remoting |
OLD | NEW |