aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2016-04-05 09:32:35 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-05 09:32:35 -0700
commit6b63536e917d86028630199c4eef4aa1597292ce (patch)
tree8866e91676890363bd9a3a22e0963eecd31a4169 /include
parentfc11b0afe0ca922a42767d4a656ed640008da1bb (diff)
Delete SkFlattenable::Type (part 1)
This should allow me to delete uses of SkFlattenable::Type in Chrome. Then I'll follow up with the full delete. https://codereview.chromium.org/1834303003/ TBR=reed@google.com BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1861013002 Review URL: https://codereview.chromium.org/1861013002
Diffstat (limited to 'include')
-rw-r--r--include/core/SkFlattenableSerialization.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkFlattenableSerialization.h b/include/core/SkFlattenableSerialization.h
index ffb1b5ae97..c5ff06ac88 100644
--- a/include/core/SkFlattenableSerialization.h
+++ b/include/core/SkFlattenableSerialization.h
@@ -14,6 +14,6 @@ class SkData;
SK_API SkData* SkValidatingSerializeFlattenable(SkFlattenable*);
SK_API SkFlattenable* SkValidatingDeserializeFlattenable(const void* data, size_t size,
- SkFlattenable::Type type);
+ SkFlattenable::Type type = SkFlattenable::kSkUnused_Type);
#endif