diff options
author | Mike Reed <reed@google.com> | 2017-07-18 16:55:10 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-07-18 21:15:24 +0000 |
commit | 1e0ca8598a5bd60f83dd6a41cb2fc2f189bf3aca (patch) | |
tree | 7ba8b68784dd092868274237b578c68595326ee6 /include | |
parent | f2290cb924640dfd439458a1ee5e61b31b08850f (diff) |
fix android-only function
Bug: skia:
Change-Id: I4225bcc368fb5ac0898f4e34221e47cd50f93061
Reviewed-on: https://skia-review.googlesource.com/24407
Commit-Queue: Mike Reed <reed@google.com>
Reviewed-by: Florin Malita <fmalita@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkPixelRef.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/core/SkPixelRef.h b/include/core/SkPixelRef.h index de8c648e1f..25a8d52540 100644 --- a/include/core/SkPixelRef.h +++ b/include/core/SkPixelRef.h @@ -110,14 +110,11 @@ protected: // default impl does nothing. virtual void onNotifyPixelsChanged(); -#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK - // This is undefined if there are clients in-flight trying to use us #ifdef SK_SUPPORT_LEGACY_COLORTABLE void android_only_reset(int width, int height, size_t rowBytes, sk_sp<SkColorTable>); #else void android_only_reset(int width, int height, size_t rowBytes); #endif -#endif private: int fWidth; |