// Copyright 2012 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_BROWSER_API_WEB_REQUEST_FORM_DATA_PARSER_H_ #define EXTENSIONS_BROWSER_API_WEB_REQUEST_FORM_DATA_PARSER_H_ #include <memory> #include <string> #include <string_view> #include <utility> #include "base/values.h" namespace net { class HttpRequestHeaders; } namespace extensions { // Interface for the form data parsers. class FormDataParser { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_WEB_REQUEST_FORM_DATA_PARSER_H_