// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_WEB_PACKAGE_WEB_BUNDLE_PARSER_H_ #define COMPONENTS_WEB_PACKAGE_WEB_BUNDLE_PARSER_H_ #include <memory> #include <optional> #include "base/containers/flat_set.h" #include "base/containers/unique_ptr_adapters.h" #include "components/web_package/mojom/web_bundle_parser.mojom.h" #include "mojo/public/cpp/bindings/remote.h" #include "url/gurl.h" namespace web_package { // This class is responsible for assigning parsing requests to the particular // parsers. class WebBundleParser : public mojom::WebBundleParser { … }; } // namespace web_package #endif // COMPONENTS_WEB_PACKAGE_WEB_BUNDLE_PARSER_H_