diff options
author | Derek Sollenberger <djsollen@google.com> | 2012-03-05 16:48:32 -0500 |
---|---|---|
committer | Derek Sollenberger <djsollen@google.com> | 2012-03-05 16:48:32 -0500 |
commit | 029f64303b8fe506ef34c12777da86b830d3bf7a (patch) | |
tree | 13a3a36467e1b982a0ae6d46f6c6309f1246b76b | |
parent | eb00769e8983a02397db26a5413147a975b47c1f (diff) | |
download | frameworks_base-029f64303b8fe506ef34c12777da86b830d3bf7a.zip frameworks_base-029f64303b8fe506ef34c12777da86b830d3bf7a.tar.gz frameworks_base-029f64303b8fe506ef34c12777da86b830d3bf7a.tar.bz2 |
Add missing includes for Mutex.h
The missing header was being transitively included through a
Skia header which is being removed.
Change-Id: I5a65bae076027951fe07d1e7eecd4732124fb0e4
-rw-r--r-- | libs/hwui/GradientCache.h | 1 | ||||
-rw-r--r-- | libs/hwui/TextureCache.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libs/hwui/GradientCache.h b/libs/hwui/GradientCache.h index 7339853..ac34684 100644 --- a/libs/hwui/GradientCache.h +++ b/libs/hwui/GradientCache.h @@ -19,6 +19,7 @@ #include <SkShader.h> +#include <utils/Mutex.h> #include <utils/Vector.h> #include "Texture.h" diff --git a/libs/hwui/TextureCache.h b/libs/hwui/TextureCache.h index d879392..10a05e0 100644 --- a/libs/hwui/TextureCache.h +++ b/libs/hwui/TextureCache.h @@ -19,6 +19,7 @@ #include <SkBitmap.h> +#include <utils/Mutex.h> #include <utils/Vector.h> #include "Debug.h" |