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

Unified Diff: net/socket/web_socket_server_socket_unittest.cc

Issue 10800052: More -Wunused-private-field cleanups. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/dns/dns_config_service_posix_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/web_socket_server_socket_unittest.cc
diff --git a/net/socket/web_socket_server_socket_unittest.cc b/net/socket/web_socket_server_socket_unittest.cc
index 531ff20d2591df52cd06979ada34b7f84955281c..82eaf2a02da7ffdf1368f6f827d23ee9bd2da079 100644
--- a/net/socket/web_socket_server_socket_unittest.cc
+++ b/net/socket/web_socket_server_socket_unittest.cc
@@ -226,8 +226,6 @@ class ReadWriteTracker {
write_buf_(new net::IOBuffer(buf_size_)),
bytes_remaining_to_read_(bytes_to_read),
bytes_remaining_to_write_(bytes_to_write),
- read_initiated_(false),
- write_initiated_(false),
got_final_zero_(false) {
int rv = ws_->Accept(
base::Bind(&ReadWriteTracker::OnAccept, base::Unretained(this)));
@@ -310,8 +308,6 @@ class ReadWriteTracker {
scoped_refptr<net::IOBuffer> write_buf_;
int bytes_remaining_to_read_;
int bytes_remaining_to_write_;
- bool read_initiated_;
- bool write_initiated_;
bool got_final_zero_;
};
« no previous file with comments | « net/dns/dns_config_service_posix_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698