| Index: cloud_print/gcp20/prototype/service_parameters.cc
|
| diff --git a/cloud_print/gcp20/prototype/service_parameters.cc b/cloud_print/gcp20/prototype/service_parameters.cc
|
| index c15be13ceaee6a6ee62e023a63afa0068af470aa..ac663f2887f80d3f3e68a8b27c6896b889382f79 100644
|
| --- a/cloud_print/gcp20/prototype/service_parameters.cc
|
| +++ b/cloud_print/gcp20/prototype/service_parameters.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "cloud_print/gcp20/prototype/service_parameters.h"
|
|
|
| ServiceParameters::ServiceParameters() : http_port_(0) {
|
| @@ -16,12 +18,11 @@ ServiceParameters::ServiceParameters(const std::string& service_type,
|
| const std::string& service_domain_name,
|
| const net::IPAddressNumber& http_ipv4,
|
| const net::IPAddressNumber& http_ipv6,
|
| - uint16 http_port)
|
| + uint16_t http_port)
|
| : service_type_(service_type),
|
| secondary_service_type_(secondary_service_type),
|
| service_name_(service_name_prefix + "." + service_type),
|
| service_domain_name_(service_domain_name),
|
| http_ipv4_(http_ipv4),
|
| http_ipv6_(http_ipv6),
|
| - http_port_(http_port) {
|
| -}
|
| + http_port_(http_port) {}
|
|
|