OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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. |
| 4 |
| 5 #ifndef CHROME_COMMON_EXTENSIONS_API_MDNS_MDNS_MANIFEST_HANDLER_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_API_MDNS_MDNS_MANIFEST_HANDLER_H_ |
| 7 |
| 8 #include <string> |
| 9 #include <vector> |
| 10 |
| 11 #include "chrome/common/extensions/extension.h" |
| 12 #include "chrome/common/extensions/manifest_handler.h" |
| 13 |
| 14 namespace extensions { |
| 15 |
| 16 struct MDnsInfo : public Extension::ManifestData { |
| 17 MDnsInfo(); |
| 18 virtual ~MDnsInfo(); |
| 19 |
| 20 std::vector<std::string> service_types; |
| 21 |
| 22 static const MDnsInfo& GetMDnsInfo(const Extension* extension); |
| 23 }; |
| 24 |
| 25 class MDnsManifestHandler : public ManifestHandler { |
| 26 public: |
| 27 MDnsManifestHandler(); |
| 28 virtual ~MDnsManifestHandler(); |
| 29 |
| 30 private: |
| 31 virtual const std::vector<std::string> Keys() const OVERRIDE; |
| 32 virtual bool Parse(Extension* extension, string16* error) OVERRIDE; |
| 33 |
| 34 DISALLOW_COPY_AND_ASSIGN(MDnsManifestHandler); |
| 35 }; |
| 36 |
| 37 } // namespace extensions |
| 38 |
| 39 #endif // CHROME_COMMON_EXTENSIONS_API_MDNS_MDNS_MANIFEST_HANDLER_H_ |
OLD | NEW |