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

Side by Side Diff: cloud_print/gcp20/prototype/command_line_reader.h

Issue 1475803002: Remove kuint16max. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kint2
Patch Set: cloud print 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_ 5 #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_
6 #define CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_ 6 #define CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_
7 7
8 #include <stdint.h>
9
8 #include <string> 10 #include <string>
9 11
10 #include "base/basictypes.h"
11
12 namespace command_line_reader { 12 namespace command_line_reader {
13 13
14 uint16 ReadHttpPort(uint16 default_value); 14 uint16_t ReadHttpPort(uint16_t default_value);
15 15
16 uint32 ReadTtl(uint32 default_value); 16 uint32_t ReadTtl(uint32_t default_value);
17 17
18 std::string ReadServiceNamePrefix(const std::string& default_value); 18 std::string ReadServiceNamePrefix(const std::string& default_value);
19 19
20 std::string ReadDomainName(const std::string& default_value); 20 std::string ReadDomainName(const std::string& default_value);
21 21
22 std::string ReadStatePath(const std::string& default_value); 22 std::string ReadStatePath(const std::string& default_value);
23 23
24 } // namespace command_line_reader 24 } // namespace command_line_reader
25 25
26 #endif // CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_ 26 #endif // CLOUD_PRINT_GCP20_PROTOTYPE_COMMAND_LINE_READER_H_
27 27
OLDNEW
« no previous file with comments | « chrome/browser/sync/test/integration/sync_test.cc ('k') | cloud_print/gcp20/prototype/command_line_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698