Deprecate SettingsDrawerActivity.openTile.

Use DashboardFeatureProvider to open tile instead. This makes logic more
centralized in one place, and makes logging easier in the future.

Bug: 30137094
Test: RunSettingsRoboTests
Change-Id: I8a028bb7cac8f70f6c237f253be8668cc3ef257e
This commit is contained in:
Fan Zhang
2017-02-13 14:24:36 -08:00
parent 33b0a66aee
commit 628b3cb76e
4 changed files with 71 additions and 18 deletions

View File

@@ -93,4 +93,9 @@ public interface DashboardFeatureProvider {
*/
String getExtraIntentAction();
/**
* Opens a tile to its destination intent.
*/
void openTileIntent(Activity activity, Tile tile);
}