summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/LauncherCallbacks.java
diff options
context:
space:
mode:
authorHyunyoung Song <hyunyoungs@google.com>2016-02-19 12:14:47 -0800
committerHyunyoung Song <hyunyoungs@google.com>2016-02-19 12:55:53 -0800
commitfbf19cccd293ca23cbed38eaa25abc6ea72be83e (patch)
treed789a2e8e527c7e156fdb89e93a6fcc963191669 /src/com/android/launcher3/LauncherCallbacks.java
parentf94068462649986dad263f28226be6c514af47d3 (diff)
downloadandroid_packages_apps_Trebuchet-fbf19cccd293ca23cbed38eaa25abc6ea72be83e.tar.gz
android_packages_apps_Trebuchet-fbf19cccd293ca23cbed38eaa25abc6ea72be83e.tar.bz2
android_packages_apps_Trebuchet-fbf19cccd293ca23cbed38eaa25abc6ea72be83e.zip
<UserEventLogging> Log app launches
b/26494415 1) Current Logger can capture taps from - homescreen - folder inside homescreen - apps prediction - all apps a-z - tap from hotseat 2) Deprecate LauncherCallback methods that is no longer needed Future CL. 3) Stats and Logger will be merged. Bundle used for Stats can be replaced with LauncherLogProto 4) Logging anything else other than app launches Change-Id: Id52eb615f66142017b5c490a220ce6654d325681
Diffstat (limited to 'src/com/android/launcher3/LauncherCallbacks.java')
-rw-r--r--src/com/android/launcher3/LauncherCallbacks.java19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/com/android/launcher3/LauncherCallbacks.java b/src/com/android/launcher3/LauncherCallbacks.java
index 772fbf358..1d7575253 100644
--- a/src/com/android/launcher3/LauncherCallbacks.java
+++ b/src/com/android/launcher3/LauncherCallbacks.java
@@ -54,20 +54,33 @@ public interface LauncherCallbacks {
*/
public void onLauncherProviderChange();
public void finishBindingItems(final boolean upgradePath);
- public void onClickAllAppsButton(View v);
public void bindAllApplications(ArrayList<AppInfo> apps);
+ public void onInteractionBegin();
+ public void onInteractionEnd();
+
+ /**
+ * Extension points for Gel Logging.
+ */
+ @Deprecated
+ public void onClickAllAppsButton(View v);
+ @Deprecated
public void onClickFolderIcon(View v);
+ @Deprecated
public void onClickAppShortcut(View v);
@Deprecated
public void onClickPagedViewIcon(View v);
+ @Deprecated
public void onClickWallpaperPicker(View v);
+ @Deprecated
public void onClickSettingsButton(View v);
+ @Deprecated
public void onClickAddWidgetButton(View v);
+ @Deprecated
public void onPageSwitch(View newPage, int newPageIndex);
+ @Deprecated
public void onWorkspaceLockedChanged();
+ @Deprecated
public void onDragStarted(View view);
- public void onInteractionBegin();
- public void onInteractionEnd();
/*
* Extension points for replacing the search experience