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

Side by Side Diff: remoting/protocol/connection_tester.h

Issue 10680013: Remove unused fields found by clang's new Wunused-private-fields. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 5 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 | « ppapi/examples/flash_topmost/flash_topmost.cc ('k') | remoting/protocol/connection_tester.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 REMOTING_PROTOCOL_CONNECTION_TESTER_H_ 5 #ifndef REMOTING_PROTOCOL_CONNECTION_TESTER_H_
6 #define REMOTING_PROTOCOL_CONNECTION_TESTER_H_ 6 #define REMOTING_PROTOCOL_CONNECTION_TESTER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 void HandleWriteResult(int result); 44 void HandleWriteResult(int result);
45 void DoRead(); 45 void DoRead();
46 void OnRead(int result); 46 void OnRead(int result);
47 void HandleReadResult(int result); 47 void HandleReadResult(int result);
48 48
49 private: 49 private:
50 MessageLoop* message_loop_; 50 MessageLoop* message_loop_;
51 net::StreamSocket* host_socket_; 51 net::StreamSocket* host_socket_;
52 net::StreamSocket* client_socket_; 52 net::StreamSocket* client_socket_;
53 int message_size_; 53 int message_size_;
54 int message_count_;
55 int test_data_size_; 54 int test_data_size_;
56 bool done_; 55 bool done_;
57 56
58 scoped_refptr<net::DrainableIOBuffer> output_buffer_; 57 scoped_refptr<net::DrainableIOBuffer> output_buffer_;
59 scoped_refptr<net::GrowableIOBuffer> input_buffer_; 58 scoped_refptr<net::GrowableIOBuffer> input_buffer_;
60 59
61 int write_errors_; 60 int write_errors_;
62 int read_errors_; 61 int read_errors_;
63 }; 62 };
64 63
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 int read_errors_; 97 int read_errors_;
99 int packets_sent_; 98 int packets_sent_;
100 int packets_received_; 99 int packets_received_;
101 int bad_packets_received_; 100 int bad_packets_received_;
102 }; 101 };
103 102
104 } // namespace protocol 103 } // namespace protocol
105 } // namespace remoting 104 } // namespace remoting
106 105
107 #endif // REMOTING_PROTOCOL_CONNECTION_TESTER_H_ 106 #endif // REMOTING_PROTOCOL_CONNECTION_TESTER_H_
OLDNEW
« no previous file with comments | « ppapi/examples/flash_topmost/flash_topmost.cc ('k') | remoting/protocol/connection_tester.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698