Rename PhoneAccount to PhoneAccountHandle

Change-Id: I2e97b348e6316a8b3ccc39fd81013e7f514a2889
This commit is contained in:
Evan Charlton
2014-07-19 18:18:19 -07:00
parent 8b4f091b49
commit 6eb262c351
16 changed files with 149 additions and 149 deletions

View File

@@ -439,11 +439,11 @@ final class RemoteConnectionService implements DeathRecipient {
}
}
final List<PhoneAccount> lookupAccounts(Uri handle) {
final List<PhoneAccountHandle> lookupAccounts(Uri handle) {
// TODO(santoscordon): Update this so that is actually calls into the RemoteConnection
// each time.
List<PhoneAccount> accounts = new LinkedList<>();
accounts.add(new PhoneAccount(
List<PhoneAccountHandle> accounts = new LinkedList<>();
accounts.add(new PhoneAccountHandle(
mComponentName,
null /* id */));
return accounts;