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

Unified Diff: Source/modules/credentialmanager/LocalCredential.h

Issue 457683002: Credential Manager: Add platform-exposed Credential objects. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Feedback Created 6 years, 4 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/modules/credentialmanager/LocalCredential.h
diff --git a/Source/modules/credentialmanager/LocalCredential.h b/Source/modules/credentialmanager/LocalCredential.h
index b60e6d00da02a392abdcba250835f0147e73c577..42cf5abbaa67e75bc686ad32c6bb9e27df174c6a 100644
--- a/Source/modules/credentialmanager/LocalCredential.h
+++ b/Source/modules/credentialmanager/LocalCredential.h
@@ -15,15 +15,12 @@ namespace blink {
class LocalCredential FINAL : public Credential {
public:
static LocalCredential* create(const String& id, const String& name, const String& avatarURL, const String& password);
- virtual ~LocalCredential();
// LocalCredential.idl
- const String& password() const { return m_password; }
+ const String& password() const;
private:
LocalCredential(const String& id, const String& name, const String& avatarURL, const String& password);
-
- String m_password;
};
} // namespace blink
« no previous file with comments | « Source/modules/credentialmanager/FederatedCredential.cpp ('k') | Source/modules/credentialmanager/LocalCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698