summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorvadimt <vadimt@google.com>2019-06-06 17:31:41 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-06-06 17:31:41 -0700
commit51d2cf913c18787ec28334737c29ad36f4f7a815 (patch)
treedea106e99fa492293473794ebdf613cbc6a43b3b /src
parentbbbfc62c638fd7ed1d3cdb3348cedbb2f245f4a6 (diff)
parentbfe171f9cbf3d3c86646e3f8685a461be0f77473 (diff)
downloadandroid_packages_apps_Trebuchet-51d2cf913c18787ec28334737c29ad36f4f7a815.tar.gz
android_packages_apps_Trebuchet-51d2cf913c18787ec28334737c29ad36f4f7a815.tar.bz2
android_packages_apps_Trebuchet-51d2cf913c18787ec28334737c29ad36f4f7a815.zip
Merge "Add tracing for b/134532571" into ub-launcher3-qt-dev
am: bfe171f9cb Change-Id: I86539398e74beb527cbede66143ff1c61990cca8
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher3/Launcher.java3
-rw-r--r--src/com/android/launcher3/testing/TestProtocol.java1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/com/android/launcher3/Launcher.java b/src/com/android/launcher3/Launcher.java
index 1afbe0098..57a9b161f 100644
--- a/src/com/android/launcher3/Launcher.java
+++ b/src/com/android/launcher3/Launcher.java
@@ -879,6 +879,9 @@ public class Launcher extends BaseDraggingActivity implements LauncherExterns,
@Override
protected void onStart() {
+ if (TestProtocol.sDebugTracing) {
+ Log.d(TestProtocol.NO_OVERVIEW_EVENT_TAG, "Launcher.onStart");
+ }
RaceConditionTracker.onEvent(ON_START_EVT, ENTER);
super.onStart();
if (mLauncherCallbacks != null) {
diff --git a/src/com/android/launcher3/testing/TestProtocol.java b/src/com/android/launcher3/testing/TestProtocol.java
index 99efb22cf..02e6bbdd7 100644
--- a/src/com/android/launcher3/testing/TestProtocol.java
+++ b/src/com/android/launcher3/testing/TestProtocol.java
@@ -72,4 +72,5 @@ public final class TestProtocol {
public static final String NO_DRAG_TAG = "b/133009122";
public static final String NO_START_TAG = "b/132900132";
public static final String NO_START_TASK_TAG = "b/133765434";
+ public static final String NO_OVERVIEW_EVENT_TAG = "b/134532571";
}