blob: fc2e706c2d0b0d83142ffe9d0a38ecc235f054ff [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// 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 <string>
#include "base/callback_forward.h"
#include "base/optional.h"
#include "content/common/content_export.h"
namespace content {
// A result container for the output of executing
// WebContents::GenerateMHTMLWithResult().
struct CONTENT_EXPORT MHTMLGenerationResult {
// GenerateMHTMLCallback is called to report completion and status of MHTML
// generation. Expects an MHTMLGenerationResult object.
using GenerateMHTMLCallback =
base::OnceCallback<void(const MHTMLGenerationResult& result)>;
MHTMLGenerationResult(int64_t file_size, const std::string* digest);
MHTMLGenerationResult(const MHTMLGenerationResult& other);
~MHTMLGenerationResult();
// Size of the generated file. On success |file_size| denotes the size of the
// generated file. On failure |file_size| is -1.
int64_t file_size;
// The SHA-256 digest of the generated file. On success, |file_digest|
// contains the digest of the generated file, otherwise |file_digest| is
// base::nullopt.
base::Optional<std::string> file_digest;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_MHTML_GENERATION_RESULT_H_