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

Unified Diff: cloud_print/gcp20/prototype/x_privet_token.h

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
« no previous file with comments | « cloud_print/gcp20/prototype/service_parameters.cc ('k') | cloud_print/gcp20/prototype/x_privet_token.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/gcp20/prototype/x_privet_token.h
diff --git a/cloud_print/gcp20/prototype/x_privet_token.h b/cloud_print/gcp20/prototype/x_privet_token.h
index 58c90f8dc4e30abc5e82832f2d3b55ccf4217361..af0341f9f45640200fe29b384c4ad69b4226da26 100644
--- a/cloud_print/gcp20/prototype/x_privet_token.h
+++ b/cloud_print/gcp20/prototype/x_privet_token.h
@@ -5,9 +5,10 @@
#ifndef CLOUD_PRINT_GCP20_PROTOTYPE_X_PRIVET_TOKEN_H_
#define CLOUD_PRINT_GCP20_PROTOTYPE_X_PRIVET_TOKEN_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "base/gtest_prod_util.h"
#include "base/time/time.h"
@@ -36,7 +37,7 @@ class XPrivetToken {
XPrivetToken(const std::string& secret, const base::Time& gen_time);
// Generates X-Privet-Token for with certain time of issue.
- std::string GenerateXTokenWithTime(uint64 issue_time) const;
+ std::string GenerateXTokenWithTime(uint64_t issue_time) const;
// Creates new XPrivetToken secret.
void UpdateSecret();
« no previous file with comments | « cloud_print/gcp20/prototype/service_parameters.cc ('k') | cloud_print/gcp20/prototype/x_privet_token.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698