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

Commit c5564b8c authored by Svetoslav's avatar Svetoslav Committed by Android (Google) Code Review
Browse files

Merge "Update FrameStats API per api-council request." into lmp-dev

parents e2da374d 53dcd394
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);
}