summaryrefslogtreecommitdiff
path: root/chromium/headless/lib/util/embedded_file.h
blob: 4647aefec0aa8a1d9ddb1151be800a6ca3a37b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2017 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 HEADLESS_LIB_UTIL_EMBEDDED_FILE_H_
#define HEADLESS_LIB_UTIL_EMBEDDED_FILE_H_

#include <cstdint>
#include <cstdlib>

namespace headless {
namespace util {

struct EmbeddedFile {
  size_t length;
  const uint8_t* contents;
};

}  // namespace util
}  // namespace headless

#endif  // HEADLESS_LIB_UTIL_EMBEDDED_FILE_H_