| OLD | NEW |
| 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 <algorithm> |
| 11 #include <vector> | 12 #include <vector> |
| 12 | 13 |
| 13 #include "base/logging.h" | 14 #include "base/logging.h" |
| 14 #include "base/numerics/safe_conversions.h" | 15 #include "base/numerics/safe_conversions.h" |
| 15 #include "components/cloud_devices/common/cloud_device_description.h" | 16 #include "components/cloud_devices/common/cloud_device_description.h" |
| 16 | 17 |
| 17 namespace base { | 18 namespace base { |
| 18 class DictionaryValue; | 19 class DictionaryValue; |
| 19 } | 20 } |
| 20 | 21 |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 | 220 |
| 220 private: | 221 private: |
| 221 Option value_; | 222 Option value_; |
| 222 | 223 |
| 223 DISALLOW_COPY_AND_ASSIGN(TicketItem); | 224 DISALLOW_COPY_AND_ASSIGN(TicketItem); |
| 224 }; | 225 }; |
| 225 | 226 |
| 226 } // namespace cloud_devices | 227 } // namespace cloud_devices |
| 227 | 228 |
| 228 #endif // COMPONENTS_CLOUD_DEVICES_COMMON_CAPABILITY_INTERFACES_H_ | 229 #endif // COMPONENTS_CLOUD_DEVICES_COMMON_CAPABILITY_INTERFACES_H_ |
| OLD | NEW |