diff options
author | 2020-04-14 16:26:37 +0000 | |
---|---|---|
committer | 2020-04-14 16:26:37 +0000 | |
commit | 2363b49590229441f69f96b9414b21d54fceb3c9 (patch) | |
tree | 8cd9c9abea5e9d086379dd57ecd1e813df292e63 /libs/hwui/PathParser.h | |
parent | c0105e5bc4315e9e3dbbd4776cfc7fd2fce8729c (diff) | |
parent | 3fedf5a7e28eec600a4223fb7a596d1f570abdb7 (diff) |
Merge "Remove unecessary exported symbols from libhwui.so"
Diffstat (limited to 'libs/hwui/PathParser.h')
-rw-r--r-- | libs/hwui/PathParser.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/hwui/PathParser.h b/libs/hwui/PathParser.h index 878bb7c0f137..859697eb3e9b 100644 --- a/libs/hwui/PathParser.h +++ b/libs/hwui/PathParser.h @@ -30,17 +30,17 @@ namespace uirenderer { class PathParser { public: - struct ANDROID_API ParseResult { + struct ParseResult { bool failureOccurred = false; std::string failureMessage; }; /** * Parse the string literal and create a Skia Path. Return true on success. */ - ANDROID_API static void parseAsciiStringForSkPath(SkPath* outPath, ParseResult* result, - const char* pathStr, size_t strLength); - ANDROID_API static void getPathDataFromAsciiString(PathData* outData, ParseResult* result, - const char* pathStr, size_t strLength); + static void parseAsciiStringForSkPath(SkPath* outPath, ParseResult* result, + const char* pathStr, size_t strLength); + static void getPathDataFromAsciiString(PathData* outData, ParseResult* result, + const char* pathStr, size_t strLength); static void dump(const PathData& data); static void validateVerbAndPoints(char verb, size_t points, ParseResult* result); }; |