summaryrefslogtreecommitdiff
path: root/chromium/services/data_decoder/web_bundler.cc
blob: dd4537fd8da4bf667da7fc9642ea7c08a3c38ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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.

#include "services/data_decoder/web_bundler.h"

namespace data_decoder {

void WebBundler::Generate(
    std::vector<mojo::PendingRemote<mojom::ResourceSnapshotForWebBundle>>
        snapshots,
    base::File file,
    GenerateCallback callback) {
  // The Web Bundle generation logic is not implemented yet.
  // TODO(crbug.com/1040752): Implement this.
  std::move(callback).Run(0, mojom::WebBundlerError::kNotImplemented);
}

}  // namespace data_decoder