| Index: src/utils/SkMultiPictureDocumentPriv.h
|
| diff --git a/src/utils/SkMultiPictureDocumentPriv.h b/src/utils/SkMultiPictureDocumentPriv.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..124dad7c6bcb56b799fd69796f8d92c98291d1c5
|
| --- /dev/null
|
| +++ b/src/utils/SkMultiPictureDocumentPriv.h
|
| @@ -0,0 +1,23 @@
|
| +/*
|
| + * Copyright 2016 Google Inc.
|
| + *
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| +#ifndef SkMultiPictureDocumentPriv_DEFINED
|
| +#define SkMultiPictureDocumentPriv_DEFINED
|
| +
|
| +#include "stdint.h"
|
| +
|
| +namespace SkMultiPictureDocumentProtocol {
|
| +static constexpr char kMagic[] = "Skia Multi-Picture Doc\n\n";
|
| +
|
| +struct Entry {
|
| + uint64_t offset;
|
| + float sizeX;
|
| + float sizeY;
|
| +};
|
| +}
|
| +
|
| +#endif // SkMultiPictureDocumentPriv_DEFINED
|
|
|