diff options
Diffstat (limited to 'libs/hwui/PathParser.h')
-rw-r--r-- | libs/hwui/PathParser.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libs/hwui/PathParser.h b/libs/hwui/PathParser.h index 5578e8d42e2f..e4ec7be5ee8e 100644 --- a/libs/hwui/PathParser.h +++ b/libs/hwui/PathParser.h @@ -20,16 +20,15 @@ #include "VectorDrawable.h" #include "utils/VectorDrawableUtils.h" -#include <jni.h> #include <android/log.h> #include <cutils/compiler.h> +#include <jni.h> #include <string> namespace android { namespace uirenderer { - class PathParser { public: struct ANDROID_API ParseResult { @@ -40,13 +39,13 @@ public: * 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); + const char* pathStr, size_t strLength); ANDROID_API static void getPathDataFromAsciiString(PathData* outData, ParseResult* result, - const char* pathStr, size_t strLength); + const char* pathStr, size_t strLength); static void dump(const PathData& data); static bool isVerbValid(char verb); }; -}; // namespace uirenderer -}; // namespace android -#endif //ANDROID_HWUI_PATHPARSER_H +}; // namespace uirenderer +}; // namespace android +#endif // ANDROID_HWUI_PATHPARSER_H |