summaryrefslogtreecommitdiffstats
path: root/net/socket/socket_test_util.h
diff options
context:
space:
mode:
authorwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-01 01:34:01 +0000
committerwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-01 01:34:01 +0000
commit4a7b78b8aa3afbe946da37783033f80035ae1b5b (patch)
tree756e531e7a7a1027a54f6ba0fc9f290661cca321 /net/socket/socket_test_util.h
parentc3453302fbaad636d925b9940cb80c1bc54c761e (diff)
downloadchromium_src-4a7b78b8aa3afbe946da37783033f80035ae1b5b.zip
chromium_src-4a7b78b8aa3afbe946da37783033f80035ae1b5b.tar.gz
chromium_src-4a7b78b8aa3afbe946da37783033f80035ae1b5b.tar.bz2
Remove extraneous semicolons.
R=mbelshe BUG=none TEST=no compilation errors Review URL: http://codereview.chromium.org/450026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33407 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/socket/socket_test_util.h')
-rw-r--r--net/socket/socket_test_util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h
index d288203..2813fe4 100644
--- a/net/socket/socket_test_util.h
+++ b/net/socket/socket_test_util.h
@@ -50,7 +50,7 @@ struct MockConnect {
struct MockRead {
// Default
- MockRead() : async(false), result(0), data(NULL), data_len(0) {};
+ MockRead() : async(false), result(0), data(NULL), data_len(0) {}
// Read failure (no data).
MockRead(bool async, int result) : async(async) , result(result), data(NULL),
@@ -281,8 +281,8 @@ class MockClientSocket : public net::SSLClientSocket {
net::CompletionCallback* callback) = 0;
virtual int Write(net::IOBuffer* buf, int buf_len,
net::CompletionCallback* callback) = 0;
- virtual bool SetReceiveBufferSize(int32 size) { return true; };
- virtual bool SetSendBufferSize(int32 size) { return true; };
+ virtual bool SetReceiveBufferSize(int32 size) { return true; }
+ virtual bool SetSendBufferSize(int32 size) { return true; }
// If an async IO is pending because the SocketDataProvider returned
// ERR_IO_PENDING, then the MockClientSocket waits until this OnReadComplete