Skip to content
Snippets Groups Projects
Commit 3bb858b2 authored by Kweku Adams's avatar Kweku Adams
Browse files

Use non-deprecated methods.

Feature ID was renamed to Attribution Tag. The old methods were marked
@Deprecated and @removed.

Bug: 135214188
Test: atest MediaInserterTest
Change-Id: Id2fd77dcdc5125ea949c23825606e7a046697e8e
parent 677d1884
No related branches found
No related tags found
No related merge requests found
......@@ -2103,7 +2103,7 @@ public class LocationManager {
try {
mService.addTestProvider(provider, properties, new ArrayList<>(extraAttributionTags),
mContext.getOpPackageName(), mContext.getFeatureId());
mContext.getOpPackageName(), mContext.getAttributionTag());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
......@@ -2125,7 +2125,7 @@ public class LocationManager {
try {
mService.removeTestProvider(provider, mContext.getOpPackageName(),
mContext.getFeatureId());
mContext.getAttributionTag());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
......@@ -2160,7 +2160,7 @@ public class LocationManager {
try {
mService.setTestProviderLocation(provider, location, mContext.getOpPackageName(),
mContext.getFeatureId());
mContext.getAttributionTag());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
......@@ -2190,7 +2190,7 @@ public class LocationManager {
try {
mService.setTestProviderEnabled(provider, enabled, mContext.getOpPackageName(),
mContext.getFeatureId());
mContext.getAttributionTag());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
......
......@@ -89,7 +89,7 @@ public class MediaInserterTest extends InstrumentationTestCase {
MockitoAnnotations.initMocks(this);
final Context attributionContext = getInstrumentation().getContext()
.createFeatureContext(TEST_FEATURE_ID);
.createAttributionContext(TEST_FEATURE_ID);
final ContentProviderClient client = new ContentProviderClient(attributionContext
.getContentResolver(), mMockProvider, true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment