summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2010-08-11 14:46:32 -0700
committerJeff Brown <jeffbrown@google.com>2010-08-11 14:46:32 -0700
commit3f9ff2076c41882c1e34f8d124df5f5e31b8c709 (patch)
treeb5a2372af9f717f44a712c3bcdc5a2035ebdb67f /include
parent8d4dfd25f7329d0cdcc8dda8bdfadd7ebec3b3a4 (diff)
downloadframeworks_native-3f9ff2076c41882c1e34f8d124df5f5e31b8c709.zip
frameworks_native-3f9ff2076c41882c1e34f8d124df5f5e31b8c709.tar.gz
frameworks_native-3f9ff2076c41882c1e34f8d124df5f5e31b8c709.tar.bz2
Add support for the PointerLocation overlay.
This change involves adding a new method to IWindowManager, monitorInput() that returns an InputChannel to receive a copy of all input that is dispatched to applications. The caller must have the READ_INPUT_STATE permission to make this request (similar to other window manager methods such as getKeycodeState). Change-Id: Icd14d810174a5b2928671ef16de73af88302aea0
Diffstat (limited to 'include')
-rw-r--r--include/utils/String8.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/utils/String8.h b/include/utils/String8.h
index 4e41410..ef0b51a 100644
--- a/include/utils/String8.h
+++ b/include/utils/String8.h
@@ -171,7 +171,8 @@ public:
status_t append(const char* other);
status_t append(const char* other, size_t numChars);
- status_t appendFormat(const char* fmt, ...);
+ status_t appendFormat(const char* fmt, ...)
+ __attribute__((format (printf, 2, 3)));
// Note that this function takes O(N) time to calculate the value.
// No cache value is stored.