c78b8f2f73
BUG= R=bsalomon@google.com, sugoi@google.com Author: sugoi@chromium.org Review URL: https://codereview.chromium.org/59033009 git-svn-id: http://skia.googlecode.com/svn/trunk@12189 2bbb7eff-a529-9590-31e7-b0007b416f81
20 lines
520 B
C++
20 lines
520 B
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkFlattenableSerialization_DEFINED
|
|
#define SkFlattenableSerialization_DEFINED
|
|
|
|
#include "SkFlattenable.h"
|
|
|
|
class SkData;
|
|
|
|
SK_API SkData* SkValidatingSerializeFlattenable(SkFlattenable*);
|
|
SK_API SkFlattenable* SkValidatingDeserializeFlattenable(const void* data, size_t size,
|
|
SkFlattenable::Type type);
|
|
|
|
#endif
|