blob: da0be7a10f26dd1b87449d939ae8fcce26ffb5ea (
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
// 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_
|