log visibility of views

Depends-On: I5b1dccb5d103ece3112acf38889bae16273b092f
Change-Id: I116aed2bb805f723a5bf2ec9eb94257de0b4a7b5
This commit is contained in:
Chris Wren
2015-03-20 10:29:14 -04:00
parent 096abbf56a
commit 8a963babe2
116 changed files with 837 additions and 53 deletions

View File

@@ -39,6 +39,7 @@ import android.widget.Button;
import android.widget.Spinner;
import android.widget.Toast;
import com.android.internal.logging.MetricsLogger;
import com.android.internal.net.VpnConfig;
import com.android.internal.telephony.Phone;
import com.android.internal.telephony.PhoneConstants;
@@ -58,7 +59,7 @@ import java.util.List;
*
* This is the confirmation screen.
*/
public class ResetNetworkConfirm extends Fragment {
public class ResetNetworkConfirm extends InstrumentedFragment {
private View mContentView;
private int mSubId = SubscriptionManager.INVALID_SUBSCRIPTION_ID;
@@ -195,4 +196,9 @@ public class ResetNetworkConfirm extends Fragment {
SubscriptionManager.INVALID_SUBSCRIPTION_ID);
}
}
@Override
protected int getMetricsCategory() {
return MetricsLogger.RESET_NETWORK_CONFIRM;
}
}