aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2018-01-23 11:57:30 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-23 18:13:35 +0000
commit0331d37af9656e2e7c5dd1d79cb12396d51a19e9 (patch)
tree9935e6ee3078255353e817870c8ed03d1601c0ac /include
parentda8139f4d4b9340354b0697cae126e8bdf583801 (diff)
remove unneeded SkFlattenableSerialization
Bug: skia: Change-Id: I5cf40b88b05dcd8e83383f6271b046eac8d55e35 Reviewed-on: https://skia-review.googlesource.com/98642 Reviewed-by: Mike Reed <reed@google.com> Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/core/SkFlattenableSerialization.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/core/SkFlattenableSerialization.h b/include/core/SkFlattenableSerialization.h
deleted file mode 100644
index f6525cb217..0000000000
--- a/include/core/SkFlattenableSerialization.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * 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;
-class SkImageFilter;
-
-// DEPRECATED -- these can all be called directly using SkFlattenable.h
-
-SK_API SkData* SkValidatingSerializeFlattenable(SkFlattenable*);
-SK_API SkFlattenable* SkValidatingDeserializeFlattenable(const void* data, size_t size,
- SkFlattenable::Type type);
-
-SK_API sk_sp<SkImageFilter> SkValidatingDeserializeImageFilter(const void* data, size_t size);
-
-#endif