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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_CLOUD_DEVICES_CLOUD_DEVICE_DESCRIPTION_H_
6 #define COMPONENTS_CLOUD_DEVICES_CLOUD_DEVICE_DESCRIPTION_H_
10 #include "base/callback.h"
13 class DictionaryValue
;
17 namespace cloud_devices
{
19 // Provides parsing, serialization and validation Cloud Device Description or
21 // https://developers.google.com/cloud-print/docs/cdd
22 class CloudDeviceDescription
{
24 CloudDeviceDescription();
25 ~CloudDeviceDescription();
29 bool InitFromString(const std::string
& json
);
31 std::string
ToString() const;
33 // Returns dictionary with capability/option.
34 // Returns NULL if missing.
35 const base::DictionaryValue
* GetItem(const std::string
& path
) const;
37 // Create dictionary for capability/option.
38 // Never returns NULL.
39 base::DictionaryValue
* CreateItem(const std::string
& path
);
41 // Returns list with capability/option.
42 // Returns NULL if missing.
43 const base::ListValue
* GetListItem(const std::string
& path
) const;
45 // Create list for capability/option.
46 // Never returns NULL.
47 base::ListValue
* CreateListItem(const std::string
& path
);
50 scoped_ptr
<base::DictionaryValue
> root_
;
52 DISALLOW_COPY_AND_ASSIGN(CloudDeviceDescription
);
55 } // namespace cloud_devices
57 #endif // COMPONENTS_CLOUD_DEVICES_CLOUD_DEVICE_DESCRIPTION_H_