summaryrefslogtreecommitdiffstats
path: root/api/current.txt
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2012-05-21 18:32:26 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-05-21 18:32:26 -0700
commit1957fd271f4e76c471d483df98cf23abf3e92360 (patch)
tree46fc05c53bce39ed1d09438ed0bb93df0d2b0846 /api/current.txt
parent084c63eb6a44fdab7507f828062a2c4a8872f8c8 (diff)
parentcae804901eb5761e42d5bac7cdd6f15d37e3ceb3 (diff)
downloadframeworks_base-1957fd271f4e76c471d483df98cf23abf3e92360.zip
frameworks_base-1957fd271f4e76c471d483df98cf23abf3e92360.tar.gz
frameworks_base-1957fd271f4e76c471d483df98cf23abf3e92360.tar.bz2
Merge "Add public API to Choreographer." into jb-dev
Diffstat (limited to 'api/current.txt')
-rw-r--r--api/current.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt
index 6aab939..7e9794f 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -22737,6 +22737,17 @@ package android.view {
method public void onPrepareSubMenu(android.view.SubMenu);
}
+ public final class Choreographer {
+ method public static android.view.Choreographer getInstance();
+ method public void postFrameCallback(android.view.Choreographer.FrameCallback);
+ method public void postFrameCallbackDelayed(android.view.Choreographer.FrameCallback, long);
+ method public void removeFrameCallback(android.view.Choreographer.FrameCallback);
+ }
+
+ public static abstract interface Choreographer.FrameCallback {
+ method public abstract void doFrame(long);
+ }
+
public abstract interface CollapsibleActionView {
method public abstract void onActionViewCollapsed();
method public abstract void onActionViewExpanded();