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

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

Issue 1540213002: Switch to standard integer types in cloud_print/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
Index: cloud_print/gcp20/prototype/cloud_print_request.cc
diff --git a/cloud_print/gcp20/prototype/cloud_print_request.cc b/cloud_print/gcp20/prototype/cloud_print_request.cc
index 6eebcb5af88c3c57c1df20685f215237def3786e..455dbaf0f10710702535a9f56fe5ca43c0a5725f 100644
--- a/cloud_print/gcp20/prototype/cloud_print_request.cc
+++ b/cloud_print/gcp20/prototype/cloud_print_request.cc
@@ -4,6 +4,8 @@
#include "cloud_print/gcp20/prototype/cloud_print_request.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/command_line.h"
#include "base/message_loop/message_loop.h"
@@ -19,7 +21,7 @@ using base::MessageLoop;
namespace {
-const uint32 kDefaultTimeout = 20; // in seconds
+const uint32_t kDefaultTimeout = 20; // in seconds
} // namespace
« no previous file with comments | « cloud_print/gcp20/prototype/cloud_print_request.h ('k') | cloud_print/gcp20/prototype/cloud_print_requester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698