summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2010-07-15 23:54:05 -0700
committerJeff Brown <jeffbrown@google.com>2010-07-16 00:02:48 -0700
commite33348ba54cd68d6936cffd4507037c14d4b10c2 (patch)
tree1429dd836a48b3f49ee2a27623ff47b5c272c827 /include
parentbd623daff1f261a0e794f059d90ba5907eb5a89a (diff)
downloadframeworks_base-e33348ba54cd68d6936cffd4507037c14d4b10c2.zip
frameworks_base-e33348ba54cd68d6936cffd4507037c14d4b10c2.tar.gz
frameworks_base-e33348ba54cd68d6936cffd4507037c14d4b10c2.tar.bz2
Fix bug with phantom input windows.
Add dumpsys integration for the native input dispatcher. Add some InputDevice API stubs. Add an appendFormat helper method to String8 for printf style string formatting mainly for debugging purposes. Use generic ArrayList<WindowState> everywhere in WindowManagerService to eliminate unnecessary casts all over. Change-Id: I9d1e3bd90eb7222d10620200477f11b7bfd25e44
Diffstat (limited to 'include')
-rw-r--r--include/utils/String8.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/utils/String8.h b/include/utils/String8.h
index c4b18a4..0b18fe3 100644
--- a/include/utils/String8.h
+++ b/include/utils/String8.h
@@ -171,6 +171,8 @@ public:
status_t append(const char* other);
status_t append(const char* other, size_t numChars);
+ status_t appendFormat(const char* fmt, ...);
+
// Note that this function takes O(N) time to calculate the value.
// No cache value is stored.
size_t getUtf32Length() const;