Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1169)

Unified Diff: Source/platform/credentialmanager/PlatformFederatedCredential.h

Issue 1162883002: Credential Manager: Align 'FederatedCredential' with the spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/platform/credentialmanager/PlatformFederatedCredential.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/credentialmanager/PlatformFederatedCredential.h
diff --git a/Source/platform/credentialmanager/PlatformFederatedCredential.h b/Source/platform/credentialmanager/PlatformFederatedCredential.h
index 389cad535fca3551c2935b89554a2455e25e12af..92a51daebd18b252cad8e7e417932b6702de9631 100644
--- a/Source/platform/credentialmanager/PlatformFederatedCredential.h
+++ b/Source/platform/credentialmanager/PlatformFederatedCredential.h
@@ -14,17 +14,17 @@ namespace blink {
class PLATFORM_EXPORT PlatformFederatedCredential final : public PlatformCredential {
WTF_MAKE_NONCOPYABLE(PlatformFederatedCredential);
public:
- static PlatformFederatedCredential* create(const String& id, const KURL& federation, const String& name, const KURL& avatarURL);
+ static PlatformFederatedCredential* create(const String& id, const KURL& federation, const String& name, const KURL& iconURL);
virtual ~PlatformFederatedCredential();
- const KURL& federation() const { return m_federation; }
+ const KURL& provider() const { return m_provider; }
virtual bool isFederated() override { return true; }
private:
- PlatformFederatedCredential(const String& id, const KURL& federation, const String& name, const KURL& avatarURL);
+ PlatformFederatedCredential(const String& id, const KURL& federation, const String& name, const KURL& iconURL);
- KURL m_federation;
+ KURL m_provider;
};
} // namespace blink
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/platform/credentialmanager/PlatformFederatedCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698