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

Unified Diff: remoting/host/session_manager.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/encoder_verbatim.cc ('k') | remoting/jingle_glue/jingle_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/session_manager.cc
===================================================================
--- remoting/host/session_manager.cc (revision 49812)
+++ remoting/host/session_manager.cc (working copy)
@@ -44,9 +44,9 @@
capturer_(capturer),
encoder_(encoder),
rate_(kDefaultCaptureRate),
- max_rate_(kDefaultCaptureRate),
started_(false),
recordings_(0),
+ max_rate_(kDefaultCaptureRate),
rate_control_started_(false) {
DCHECK(capture_loop_);
DCHECK(encode_loop_);
@@ -308,7 +308,7 @@
}
// If |slow_down| equals zero, we have no slow down.
- int slow_down = max_pending_update_streams / kSlowDownFactor;
+ size_t slow_down = max_pending_update_streams / kSlowDownFactor;
// Set new_rate to -1 for checking later.
double new_rate = -1;
// If the slow down is too large.
« no previous file with comments | « remoting/host/encoder_verbatim.cc ('k') | remoting/jingle_glue/jingle_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698