Commit 9907eaa5 authored by Jérôme Lebel's avatar Jérôme Lebel Committed by Commit Bot

[iOS] Removing ChromeIdentityService::GetIdentityWithEmail()

ChromeIdentityService::GetIdentityWithEmail() is unused.

The implementation is removed with:
crrev.com/i/3318008.

Change-Id: I8926f60be9bfd18814b1fc2aaadf4a3f9321c5dc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2455607Reviewed-by: default avatarMihai Sardarescu <msarda@chromium.org>
Commit-Queue: Jérôme Lebel <jlebel@chromium.org>
Cr-Commit-Position: refs/heads/master@{#815077}
parent 131cde29
......@@ -155,10 +155,6 @@ class ChromeIdentityService {
// identitites.
virtual bool IsValidIdentity(ChromeIdentity* identity);
// Returns the chrome identity having the email equal to |email| or |nil| if
// no matching identity is found.
virtual ChromeIdentity* GetIdentityWithEmail(const std::string& email);
// Returns the chrome identity having the gaia ID equal to |gaia_id| or |nil|
// if no matching identity is found.
virtual ChromeIdentity* GetIdentityWithGaiaID(const std::string& gaia_id);
......
......@@ -65,11 +65,6 @@ bool ChromeIdentityService::IsValidIdentity(ChromeIdentity* identity) {
return false;
}
ChromeIdentity* ChromeIdentityService::GetIdentityWithEmail(
const std::string& email) {
return nil;
}
ChromeIdentity* ChromeIdentityService::GetIdentityWithGaiaID(
const std::string& gaia_id) {
return nil;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment