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

Side by Side Diff: components/cloud_devices/common/description_items.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_CLOUD_DEVICES_COMMON_CAPABILITY_INTERFACES_H_ 5 #ifndef COMPONENTS_CLOUD_DEVICES_COMMON_CAPABILITY_INTERFACES_H_
6 #define COMPONENTS_CLOUD_DEVICES_COMMON_CAPABILITY_INTERFACES_H_ 6 #define COMPONENTS_CLOUD_DEVICES_COMMON_CAPABILITY_INTERFACES_H_
7 7
8 // Defines common templates that could be used to create device specific 8 // Defines common templates that could be used to create device specific
9 // capabilities and print tickets. 9 // capabilities and print tickets.
10 10
11 #include <stddef.h>
12
11 #include <algorithm> 13 #include <algorithm>
12 #include <vector> 14 #include <vector>
13 15
14 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "base/macros.h"
15 #include "base/numerics/safe_conversions.h" 18 #include "base/numerics/safe_conversions.h"
16 #include "components/cloud_devices/common/cloud_device_description.h" 19 #include "components/cloud_devices/common/cloud_device_description.h"
17 20
18 namespace base { 21 namespace base {
19 class DictionaryValue; 22 class DictionaryValue;
20 } 23 }
21 24
22 namespace cloud_devices { 25 namespace cloud_devices {
23 26
24 // All traits below specify how to serialize and validate capabilities and 27 // All traits below specify how to serialize and validate capabilities and
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 223
221 private: 224 private:
222 Option value_; 225 Option value_;
223 226
224 DISALLOW_COPY_AND_ASSIGN(TicketItem); 227 DISALLOW_COPY_AND_ASSIGN(TicketItem);
225 }; 228 };
226 229
227 } // namespace cloud_devices 230 } // namespace cloud_devices
228 231
229 #endif // COMPONENTS_CLOUD_DEVICES_COMMON_CAPABILITY_INTERFACES_H_ 232 #endif // COMPONENTS_CLOUD_DEVICES_COMMON_CAPABILITY_INTERFACES_H_
OLDNEW
« no previous file with comments | « components/cloud_devices/common/cloud_device_description.h ('k') | components/cloud_devices/common/description_items_inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698