Commit 5716b3ea authored by jorgelo@chromium.org's avatar jorgelo@chromium.org

map::size() returns a size_t.

BUG=None
TEST=Compile with gcc.

Review URL: https://chromiumcodereview.appspot.com/23935006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221838 0039d316-1c4b-4281-b951-d872f2087c98
parent 02d8afa2
...@@ -25,7 +25,7 @@ const int kErrorTimeoutSec = 30; ...@@ -25,7 +25,7 @@ const int kErrorTimeoutSec = 30;
// Errors simulation constants: // Errors simulation constants:
const double kPaperJamProbability = 0.2; const double kPaperJamProbability = 0.2;
const int kTooManyDraftsTimeout = 10; const int kTooManyDraftsTimeout = 10;
const int kMaxDrafts = 5; const size_t kMaxDrafts = 5;
const base::FilePath::CharType kJobsPath[] = FILE_PATH_LITERAL("printjobs"); const base::FilePath::CharType kJobsPath[] = FILE_PATH_LITERAL("printjobs");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment