// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_MEDIA_ROUTER_DISCOVERY_DIAL_SAFE_DIAL_APP_INFO_PARSER_H_ #define CHROME_BROWSER_MEDIA_ROUTER_DISCOVERY_DIAL_SAFE_DIAL_APP_INFO_PARSER_H_ #include <memory> #include <string> #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" #include "chrome/browser/media/router/discovery/dial/parsed_dial_app_info.h" #include "services/data_decoder/public/cpp/data_decoder.h" namespace media_router { // SafeDialAppInfoParser parses the given app info XML file safely via a utility // process. // Spec for DIAL app info XML: // http://www.dial-multiscreen.org/dial-protocol-specification // Section 6.1.2 Server response. class SafeDialAppInfoParser { … }; } // namespace media_router #endif // CHROME_BROWSER_MEDIA_ROUTER_DISCOVERY_DIAL_SAFE_DIAL_APP_INFO_PARSER_H_