blob: 308c62f86df41b8639ce380169c30e6bb230d5c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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 COMPONENTS_PAINT_PREVIEW_COMMON_VERSION_H_
#define COMPONENTS_PAINT_PREVIEW_COMMON_VERSION_H_
#include <stdint.h>
namespace paint_preview {
// Version of the paint preview. Should be incremented on breaking changes to
// the storage format or the SkPicture deserialization process.
extern const uint32_t kPaintPreviewVersion;
} // namespace paint_preview
#endif // COMPONENTS_PAINT_PREVIEW_COMMON_VERSION_H_
|