Remove device profile dependency from UserEventDispatcher

Bug: 110122682

Change-Id: I31ba61e60e31f1cc84e6d0cf115193e45d9fcfdb
This commit is contained in:
Hyunyoung Song
2018-07-02 13:17:32 -07:00
parent 17b7d36594
commit 956ec4b0e5
5 changed files with 8 additions and 20 deletions

View File

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