Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: remoting/client/plugin/compression.cc

Issue 2801003: Tighten up compile warnings based to match other chromium sub-projects.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/client/plugin/client.cc ('k') | remoting/host/client_connection.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « remoting/client/plugin/client.cc ('k') | remoting/host/client_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698