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

Unified Diff: cloud_print/gcp20/prototype/print_job_handler.cc

Issue 23935006: map::size() returns a size_t. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/gcp20/prototype/print_job_handler.cc
diff --git a/cloud_print/gcp20/prototype/print_job_handler.cc b/cloud_print/gcp20/prototype/print_job_handler.cc
index 7bbc1af701e83ced8dc6703df0ae59418dd19408..a82f26f88873d9d34ee3ce5da4cab4b5bfcf5335 100644
--- a/cloud_print/gcp20/prototype/print_job_handler.cc
+++ b/cloud_print/gcp20/prototype/print_job_handler.cc
@@ -25,7 +25,7 @@ const int kErrorTimeoutSec = 30;
// Errors simulation constants:
const double kPaperJamProbability = 0.2;
const int kTooManyDraftsTimeout = 10;
-const int kMaxDrafts = 5;
+const size_t kMaxDrafts = 5;
const base::FilePath::CharType kJobsPath[] = FILE_PATH_LITERAL("printjobs");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698