1 // Copyright 2021 Google LLC.
2 
3 #include "experimental/sktext/src/Decorator.h"
4 
5 namespace skia {
6 namespace text {
7 
process()8 bool Decorator::process() {
9 
10     // TODO: Decorate the text
11     return true;
12 }
13 
14 } // namespace text
15 } // namespace skia
16