Removing launcher dependency when logging quickstep interaction

as Launcher may not be ready when the touch gesture completes.

Change-Id: Ia69eb7bfb0340f7b7ce9b6c67be8851e5429f867
This commit is contained in:
Sunny Goyal
2018-02-22 10:07:32 -08:00
parent 668dd40a98
commit d70e75a514
7 changed files with 39 additions and 41 deletions

View File

@@ -48,8 +48,7 @@ public abstract class BaseActivity extends Activity {
public final UserEventDispatcher getUserEventDispatcher() {
if (mUserEventDispatcher == null) {
mUserEventDispatcher = UserEventDispatcher.newInstance(this,
mDeviceProfile.isLandscape, isInMultiWindowModeCompat());
mUserEventDispatcher = UserEventDispatcher.newInstance(this, mDeviceProfile);
}
return mUserEventDispatcher;
}