Improve analytics
Removes the existing buggy & verbose analytics classes. Instead adds
the AnalyticsUtil. Like before, analytics will automatically be added
to all activities. They need to be manually setup for fragments
that you care about.
Improving analytics CL #2/4
Bug: 18039620
Change-Id: I99a4062e09e7614e5369d795132172d4d1867600
diff --git a/src/com/android/contacts/common/dialog/IndeterminateProgressDialog.java b/src/com/android/contacts/common/dialog/IndeterminateProgressDialog.java
index c26d6b4..2fe059f 100644
--- a/src/com/android/contacts/common/dialog/IndeterminateProgressDialog.java
+++ b/src/com/android/contacts/common/dialog/IndeterminateProgressDialog.java
@@ -16,9 +16,8 @@
package com.android.contacts.common.dialog;
-import com.android.contacts.commonbind.analytics.AnalyticsDialogFragment;
-
import android.app.Dialog;
+import android.app.DialogFragment;
import android.app.FragmentManager;
import android.app.ProgressDialog;
import android.content.DialogInterface;
@@ -42,7 +41,7 @@
* after a device orientation change because the {@link #setRetainInstance(boolean)} is called
* internally with true.
*/
-public class IndeterminateProgressDialog extends AnalyticsDialogFragment {
+public class IndeterminateProgressDialog extends DialogFragment {
private static final String TAG = IndeterminateProgressDialog.class.getSimpleName();
private CharSequence mTitle;