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

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

Issue 640263002: Credential Manager: Pass the correct credential type to the embedder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Feedback. Created 6 years, 2 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
Index: Source/platform/credentialmanager/PlatformLocalCredential.h
diff --git a/Source/platform/credentialmanager/PlatformLocalCredential.h b/Source/platform/credentialmanager/PlatformLocalCredential.h
index 40b1a820ee0cb6e35a2aaf448992ec8ef75fb917..ce6d236491bfc0767f0ed985c2c6ac17d72a2a44 100644
--- a/Source/platform/credentialmanager/PlatformLocalCredential.h
+++ b/Source/platform/credentialmanager/PlatformLocalCredential.h
@@ -19,6 +19,8 @@ public:
const String& password() const { return m_password; }
+ virtual bool isLocal() override { return true; }
+
private:
PlatformLocalCredential(const String& id, const String& name, const KURL& avatarURL, const String& password);
« no previous file with comments | « Source/platform/credentialmanager/PlatformFederatedCredential.h ('k') | Source/platform/exported/WebCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698