Merge "Adding generation of ACTION_TOGGLE_RECENTS to shared lib" into pi-dev

am: 82bc5baeb5

Change-Id: Ice9e85805b27139bbeec98f0c1736e0265d95309
This commit is contained in:
Vadim Tryshev
2018-03-12 19:32:02 +00:00
committed by android-build-merger
2 changed files with 45 additions and 2 deletions

View File

@@ -147,8 +147,17 @@ public class LatencyTracker {
}
mStartRtc.delete(action);
Trace.asyncTraceEnd(Trace.TRACE_TAG_APP, NAMES[action], 0);
long duration = endRtc - startRtc;
logAction(action, (int)(endRtc - startRtc));
}
/**
* Logs an action that has started and ended. This needs to be called from the main thread.
*
* @param action The action to end. One of the ACTION_* values.
* @param duration The duration of the action in ms.
*/
public static void logAction(int action, int duration) {
Log.i(TAG, "action=" + action + " latency=" + duration);
EventLog.writeEvent(EventLogTags.SYSUI_LATENCY, action, (int) duration);
EventLog.writeEvent(EventLogTags.SYSUI_LATENCY, action, duration);
}
}

View File

@@ -0,0 +1,34 @@
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package com.android.systemui.shared.system;
import android.content.Context;
import com.android.internal.util.LatencyTracker;
/**
* @see LatencyTracker
*/
public class LatencyTrackerCompat {
public static boolean isEnabled(Context context) {
return LatencyTracker.isEnabled(context);
}
public static void logToggleRecents(int duration) {
LatencyTracker.logAction(LatencyTracker.ACTION_TOGGLE_RECENTS, duration);
}
}