// 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 CONTENT_PUBLIC_BROWSER_MHTML_GENERATION_RESULT_H_ #define CONTENT_PUBLIC_BROWSER_MHTML_GENERATION_RESULT_H_ #include <cstdint> #include <optional> #include <string> #include "base/functional/callback_forward.h" #include "content/common/content_export.h" namespace content { // A result container for the output of executing // WebContents::GenerateMHTMLWithResult(). struct CONTENT_EXPORT MHTMLGenerationResult { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_MHTML_GENERATION_RESULT_H_