// 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 EXTENSIONS_COMMON_MANIFEST_HANDLERS_REPLACEMENT_APPS_H_ #define EXTENSIONS_COMMON_MANIFEST_HANDLERS_REPLACEMENT_APPS_H_ #include <string> #include "extensions/common/extension.h" #include "extensions/common/manifest_handler.h" class GURL; namespace extensions { // A structure to hold replacement apps that may be specified in the // manifest of an extension using the "replacement_web_app" key. struct ReplacementAppsInfo : public Extension::ManifestData { … }; // Parses the "replacement_web_app" manifest key. class ReplacementAppsHandler : public ManifestHandler { … }; } // namespace extensions #endif // EXTENSIONS_COMMON_MANIFEST_HANDLERS_REPLACEMENT_APPS_H_