// 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 EXTENSIONS_COMMON_API_DECLARATIVE_NET_REQUEST_DNR_MANIFEST_DATA_H_ #define EXTENSIONS_COMMON_API_DECLARATIVE_NET_REQUEST_DNR_MANIFEST_DATA_H_ #include <map> #include <string> #include <vector> #include "base/files/file_path.h" #include "extensions/common/api/declarative_net_request/constants.h" #include "extensions/common/extension.h" namespace extensions::declarative_net_request { // Manifest data required for the kDeclarativeNetRequestKey manifest // key. struct DNRManifestData : Extension::ManifestData { … }; } // namespace extensions::declarative_net_request #endif // EXTENSIONS_COMMON_API_DECLARATIVE_NET_REQUEST_DNR_MANIFEST_DATA_H_