summaryrefslogtreecommitdiff
path: root/chromium/services/data_decoder/web_bundler.h
blob: 36be21410482f12ab44a2ead248ca42e27f58207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2020 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 SERVICES_DATA_DECODER_WEB_BUNDLER_H_
#define SERVICES_DATA_DECODER_WEB_BUNDLER_H_

#include <vector>

#include "base/files/file.h"
#include "mojo/public/cpp/base/big_buffer.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "services/data_decoder/public/mojom/resource_snapshot_for_web_bundle.mojom.h"
#include "services/data_decoder/public/mojom/web_bundler.mojom.h"

namespace data_decoder {

class WebBundler : public mojom::WebBundler {
 public:
  WebBundler() = default;
  ~WebBundler() override = default;

  WebBundler(const WebBundler&) = delete;
  WebBundler& operator=(const WebBundler&) = delete;

 private:
  // mojom::WebBundler implementation.
  void Generate(
      std::vector<mojo::PendingRemote<mojom::ResourceSnapshotForWebBundle>>
          snapshots,
      base::File file,
      GenerateCallback callback) override;
};

}  // namespace data_decoder

#endif  // SERVICES_DATA_DECODER_WEB_BUNDLER_H_