Index: cloud_print/gcp20/prototype/privet_http_server.h |
diff --git a/cloud_print/gcp20/prototype/privet_http_server.h b/cloud_print/gcp20/prototype/privet_http_server.h |
index 18320e3c1094571e8580affad8e1363577bda1f6..f5c815a0258a69ea98894c63f81a6cf5ba4a038c 100644 |
--- a/cloud_print/gcp20/prototype/privet_http_server.h |
+++ b/cloud_print/gcp20/prototype/privet_http_server.h |
@@ -5,10 +5,12 @@ |
#ifndef CLOUD_PRINT_GCP20_PROTOTYPE_PRIVET_HTTP_SERVER_H_ |
#define CLOUD_PRINT_GCP20_PROTOTYPE_PRIVET_HTTP_SERVER_H_ |
+#include <stdint.h> |
+ |
#include <string> |
#include <vector> |
-#include "base/basictypes.h" |
+#include "base/macros.h" |
#include "base/values.h" |
#include "cloud_print/gcp20/prototype/local_print_job.h" |
#include "net/server/http_server.h" |
@@ -134,7 +136,7 @@ class PrivetHttpServer: public net::HttpServer::Delegate { |
~PrivetHttpServer() override; |
// Starts HTTP server: start listening port |port| for HTTP requests. |
- bool Start(uint16 port); |
+ bool Start(uint16_t port); |
// Stops HTTP server. |
void Shutdown(); |
@@ -201,7 +203,7 @@ class PrivetHttpServer: public net::HttpServer::Delegate { |
// Port for listening. |
- uint16 port_; |
+ uint16_t port_; |
// Contains encapsulated object for listening for requests. |
scoped_ptr<net::HttpServer> server_; |