| 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
|
|
|