Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53dcd394 authored by Svetoslav's avatar Svetoslav
Browse files

Update FrameStats API per api-council request.

bug:17390382

Change-Id: I50518834569f4d0ec394709294537256f03530e0
parent c7d62f02
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -32507,8 +32507,6 @@ package android.view {
    method public final long getRefreshPeriodNano();
    method public final long getStartTimeNano();
    field public static final long UNDEFINED_TIME_NANO = -1L; // 0xffffffffffffffffL
    field protected long[] mFramesPresentedTimeNano;
    field protected long mRefreshPeriodNano;
  }
  public class GestureDetector {
+3 −0
Original line number Diff line number Diff line
@@ -28,7 +28,10 @@ public abstract class FrameStats {
     */
    public static final long UNDEFINED_TIME_NANO = -1;

    /** @hide */
    protected long mRefreshPeriodNano;

    /** @hide */
    protected long[] mFramesPresentedTimeNano;

    /**
+2 −1
Original line number Diff line number Diff line
@@ -29,5 +29,6 @@ interface IPdfRenderer {
    oneway void renderPage(int pageIndex, int bitmapWidth, int bitmapHeight,
        in PrintAttributes attributes, in ParcelFileDescriptor destination);
    oneway void closeDocument();
    oneway void writePages(in PageRange[] pages);
    oneway void writePages(in Pagit br
    geRange[] pages);
}