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

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

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/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);
« no previous file with comments | « Source/platform/credentialmanager/PlatformFederatedCredential.h ('k') | Source/platform/exported/WebMediaStreamSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698