Log taps on PS container buttons

Log taps on space locked/unlocked, settings
buttons

PDD: https://eldar.corp.google.com/assessments/873128385/revisions/1

Test: logcat StatsLog, output
https://paste.googleplex.com/6250774946906112
Bug: 314933661
Flag: ACONFIG com.android.launcher3.Flags.enable_private_space TEAMFOOD
Change-Id: I528443ba56a0db144ce613ea8d41426b6ede434d
This commit is contained in:
Anna Zhuravleva
2023-12-05 12:15:31 +00:00
parent 4a6d4994c3
commit 2ef6704e61
3 changed files with 26 additions and 8 deletions

View File

@@ -71,13 +71,11 @@ public class PrivateProfileManager extends UserProfileManager {
/** Disables quiet mode for Private Space User Profile. */
public void unlockPrivateProfile() {
// TODO (b/302666597): Log this event to WW.
enableQuietMode(false);
}
/** Enables quiet mode for Private Space User Profile. */
public void lockPrivateProfile() {
// TODO (b/302666597): Log this event to WW.
enableQuietMode(true);
}
@@ -101,7 +99,6 @@ public class PrivateProfileManager extends UserProfileManager {
/** Opens the Private Space Settings Entry Point. */
public void openPrivateSpaceSettings() {
// TODO (b/302666597): Log this event to WW.
Intent psSettingsIntent = new Intent(SAFETY_CENTER_INTENT);
psSettingsIntent.putExtra(PS_SETTINGS_FRAGMENT_KEY, PS_SETTINGS_FRAGMENT_VALUE);
mAllApps.getContext().startActivity(psSettingsIntent);