s13n: Convert IdentityManager::Observer::OnRefreshTokenUpdatedForAccount to use CoreAccountInfo

CoreAccountInfo is enough to OnRefreshTokenUpdatedForAccount. This CL converts
AccountInfo to CoreAccountInfo in OnRefreshTokenUpdatedForAccount.

Bug: 930118
Change-Id: I426babe21c2fd99d0e28cbbc2b75ad9247d72e45
Reviewed-on: https://chromium-review.googlesource.com/c/1460748
Commit-Queue: Gyuyoung Kim <[email protected]>
Reviewed-by: Sylvain Defresne <[email protected]>
Reviewed-by: Scott Violet <[email protected]>
Cr-Commit-Position: refs/heads/master@{#631035}
diff --git a/components/invalidation/impl/profile_identity_provider.cc b/components/invalidation/impl/profile_identity_provider.cc
index 8b01277..b7dbdb5 100644
--- a/components/invalidation/impl/profile_identity_provider.cc
+++ b/components/invalidation/impl/profile_identity_provider.cc
@@ -111,7 +111,7 @@
 }
 
 void ProfileIdentityProvider::OnRefreshTokenUpdatedForAccount(
-    const AccountInfo& account_info) {
+    const CoreAccountInfo& account_info) {
   ProcessRefreshTokenUpdateForAccount(account_info.account_id);
 }