| Index: cloud_print/gcp20/prototype/command_line_reader.h
|
| diff --git a/cloud_print/gcp20/prototype/command_line_reader.h b/cloud_print/gcp20/prototype/command_line_reader.h
|
| index 20be585625f0bc71c8a525b8f6526d5f230cfc23..018b79eb4f41f97c96a5d91624f754e1357d4658 100644
|
| --- a/cloud_print/gcp20/prototype/command_line_reader.h
|
| +++ b/cloud_print/gcp20/prototype/command_line_reader.h
|
| @@ -5,15 +5,15 @@
|
| #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_
|
| #define CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_
|
|
|
| -#include <string>
|
| +#include <stdint.h>
|
|
|
| -#include "base/basictypes.h"
|
| +#include <string>
|
|
|
| namespace command_line_reader {
|
|
|
| -uint16 ReadHttpPort(uint16 default_value);
|
| +uint16_t ReadHttpPort(uint16_t default_value);
|
|
|
| -uint32 ReadTtl(uint32 default_value);
|
| +uint32_t ReadTtl(uint32_t default_value);
|
|
|
| std::string ReadServiceNamePrefix(const std::string& default_value);
|
|
|
|
|