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

Commit 1704b73c authored by Danae Savvidi's avatar Danae Savvidi Committed by Android (Google) Code Review
Browse files

Merge "Update logging line to add client_count in DisplayEventCallbackOccurred atom" into main

parents e7a992ad cfeb079d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -30,7 +30,8 @@ public final class DisplayFrameworkStatsLogger {
        FrameworkStatsLog.write(
                FrameworkStatsLog.DISPLAY_EVENT_CALLBACK_OCCURRED,
                toProtoEventType(event),
                notifiedUids.copyKeys());
                notifiedUids.copyKeys(),
                notifiedUids.size());
    }

    /**
+3 −3
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ public class DisplayFrameworkStatsLoggerTest {
                .write(
                        FrameworkStatsLog.DISPLAY_EVENT_CALLBACK_OCCURRED,
                        expectedProtoType,
                        uidMap.copyKeys());
                        uidMap.copyKeys(), 2);
    }

    @Test
@@ -92,7 +92,7 @@ public class DisplayFrameworkStatsLoggerTest {
                .write(
                        FrameworkStatsLog.DISPLAY_EVENT_CALLBACK_OCCURRED,
                        expectedProtoType,
                        uidMap.copyKeys());
                        uidMap.copyKeys(), 1);
    }

    @Test
@@ -113,6 +113,6 @@ public class DisplayFrameworkStatsLoggerTest {
                .write(
                        FrameworkStatsLog.DISPLAY_EVENT_CALLBACK_OCCURRED,
                        expectedProtoType,
                        uidMap.copyKeys());
                        uidMap.copyKeys(), 1);
    }
}