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

Commit bae1a577 authored by Shaowei Shen's avatar Shaowei Shen Committed by Automerger Merge Worker
Browse files

Merge "[Output Switcher] [Metric Logging] Add package name in Interaction...

Merge "[Output Switcher] [Metric Logging] Add package name in Interaction event" into tm-qpr-dev am: c8c9ce73 am: 4ef820e3

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/19952311



Change-Id: I98809e23cf5d889dd24f27a98fc365b156eb71b8
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents d7cd7030 4ef820e3
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -107,7 +107,8 @@ public class MediaOutputMetricLogger {
        SysUiStatsLog.write(
                SysUiStatsLog.MEDIAOUTPUT_OP_INTERACTION_REPORT,
                SysUiStatsLog.MEDIA_OUTPUT_OP_INTERACTION_REPORTED__INTERACTION_TYPE__ADJUST_VOLUME,
                getInteractionDeviceType(source));
                getInteractionDeviceType(source),
                getLoggingPackageName());
    }

    /**
@@ -121,7 +122,8 @@ public class MediaOutputMetricLogger {
        SysUiStatsLog.write(
                SysUiStatsLog.MEDIAOUTPUT_OP_INTERACTION_REPORT,
                SysUiStatsLog.MEDIA_OUTPUT_OP_INTERACTION_REPORTED__INTERACTION_TYPE__STOP_CASTING,
                SysUiStatsLog.MEDIA_OUTPUT_OP_INTERACTION_REPORTED__TARGET__UNKNOWN_TYPE);
                SysUiStatsLog.MEDIA_OUTPUT_OP_INTERACTION_REPORTED__TARGET__UNKNOWN_TYPE,
                getLoggingPackageName());
    }

    /**
@@ -135,7 +137,8 @@ public class MediaOutputMetricLogger {
        SysUiStatsLog.write(
                SysUiStatsLog.MEDIAOUTPUT_OP_INTERACTION_REPORT,
                SysUiStatsLog.MEDIA_OUTPUT_OP_INTERACTION_REPORTED__INTERACTION_TYPE__EXPANSION,
                getInteractionDeviceType(source));
                getInteractionDeviceType(source),
                getLoggingPackageName());
    }

    /**