Index: Source/platform/credentialmanager/PlatformPasswordCredential.h |
diff --git a/Source/platform/credentialmanager/PlatformPasswordCredential.h b/Source/platform/credentialmanager/PlatformPasswordCredential.h |
index 643872e84b5e0a707e337f12278833c8f43620d1..4ba685c1ed8525644aea882acd0a48d661f330be 100644 |
--- a/Source/platform/credentialmanager/PlatformPasswordCredential.h |
+++ b/Source/platform/credentialmanager/PlatformPasswordCredential.h |
@@ -15,11 +15,11 @@ class PLATFORM_EXPORT PlatformPasswordCredential final : public PlatformCredenti |
WTF_MAKE_NONCOPYABLE(PlatformPasswordCredential); |
public: |
static PlatformPasswordCredential* create(const String& id, const String& password, const String& name, const KURL& iconURL); |
- virtual ~PlatformPasswordCredential(); |
+ ~PlatformPasswordCredential() override; |
const String& password() const { return m_password; } |
- virtual bool isPassword() override { return true; } |
+ bool isPassword() override { return true; } |
private: |
PlatformPasswordCredential(const String& id, const String& password, const String& name, const KURL& iconURL); |