summaryrefslogtreecommitdiffstats
path: root/include/utils
diff options
context:
space:
mode:
authorRomain Guy <romainguy@google.com>2011-10-12 13:48:51 -0700
committerRomain Guy <romainguy@google.com>2011-10-12 13:48:51 -0700
commit7953745dd565167113f8cbfc461bc0521d32d870 (patch)
treef45d34b4b7a6c19c0a639be68e6455a116a93bca /include/utils
parent0bbd8d8273c1dde9e0504f67bd8eb159bef2406a (diff)
downloadframeworks_base-7953745dd565167113f8cbfc461bc0521d32d870.zip
frameworks_base-7953745dd565167113f8cbfc461bc0521d32d870.tar.gz
frameworks_base-7953745dd565167113f8cbfc461bc0521d32d870.tar.bz2
Reduce the size of libhwui by 50%
This change removes unnessary symbols. All symbols are hidden by default, public APIs with exported symbols are explicitly marked with ANDROID_API. Change-Id: I692fde432a86c12108de1cfd1f6504919a7d5f3f
Diffstat (limited to 'include/utils')
-rw-r--r--include/utils/Singleton.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/utils/Singleton.h b/include/utils/Singleton.h
index e1ee8eb..a42ce21 100644
--- a/include/utils/Singleton.h
+++ b/include/utils/Singleton.h
@@ -20,12 +20,13 @@
#include <stdint.h>
#include <sys/types.h>
#include <utils/threads.h>
+#include <cutils/compiler.h>
namespace android {
// ---------------------------------------------------------------------------
template <typename TYPE>
-class Singleton
+class ANDROID_API Singleton
{
public:
static TYPE& getInstance() {