summaryrefslogtreecommitdiffstats
path: root/remoting/host/client_connection.cc
diff options
context:
space:
mode:
authordmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-15 22:13:43 +0000
committerdmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-15 22:13:43 +0000
commit887cec87432cce92d06a39b62a9ce4f57260acc9 (patch)
tree910e78a9e37009c7774a097872d2769ca50226db /remoting/host/client_connection.cc
parent0c860d067e62556bad67620240abc9abfeb85c7d (diff)
downloadchromium_src-887cec87432cce92d06a39b62a9ce4f57260acc9.zip
chromium_src-887cec87432cce92d06a39b62a9ce4f57260acc9.tar.gz
chromium_src-887cec87432cce92d06a39b62a9ce4f57260acc9.tar.bz2
Tighten up compile warnings based to match other chromium sub-projects.
Fix up the issues that the new warnings raised. BUG=none TEST=build remoting cleanly Review URL: http://codereview.chromium.org/2801003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49842 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/client_connection.cc')
-rw-r--r--remoting/host/client_connection.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/client_connection.cc b/remoting/host/client_connection.cc
index 23b8b80..d2c0df0 100644
--- a/remoting/host/client_connection.cc
+++ b/remoting/host/client_connection.cc
@@ -15,7 +15,7 @@ namespace remoting {
// Determine how many update streams we should count to find the size of
// average update stream.
-static const int kAverageUpdateStream = 10;
+static const size_t kAverageUpdateStream = 10;
ClientConnection::ClientConnection(MessageLoop* message_loop,
ProtocolDecoder* decoder,