Add the interface to check the status of location setting.

Bug: 30790766
Test: ag/1346969

Change-Id: Id6de284ba90f75015372dbe28805bdc0d94a0723
This commit is contained in:
jackqdyulei
2016-08-18 11:07:23 -07:00
parent 5d4dc3748d
commit 348bcc1e81
4 changed files with 44 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ package com.android.settings.overlay;
import android.content.Context;
import android.support.annotation.Keep;
import com.android.settings.fuelgauge.PowerUsageFeatureProvider;
/**
* {@link FeatureFactory} implementation for AOSP Settings.
@@ -30,4 +31,9 @@ public final class FeatureFactoryImpl extends FeatureFactory {
return null;
}
@Override
public PowerUsageFeatureProvider getPowerUsageFeatureProvider() {
return null;
}
}