diff options
author | 2020-02-21 13:07:28 -0500 | |
---|---|---|
committer | 2020-04-09 14:26:16 -0400 | |
commit | 3fedf5a7e28eec600a4223fb7a596d1f570abdb7 (patch) | |
tree | 2306ba95e96b294b5cb65d7f32f47aa1e9262dab /libs/hwui/PathParser.h | |
parent | 2c5d63439e653c2981841ca819957fbd8a414d54 (diff) |
Remove unecessary exported symbols from libhwui.so
Test: compiles and links
Bug: 150782769
Change-Id: Ib49c1bf914b6bfaad1fb29371115df7c9eec08d2
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 f5bebce605fb..3d5b64d90474 100644 --- a/libs/hwui/PathParser.h +++ b/libs/hwui/PathParser.h @@ -31,17 +31,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); }; |