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

Unified Diff: Source/platform/credentialmanager/PlatformFederatedCredential.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/PlatformFederatedCredential.h
diff --git a/Source/platform/credentialmanager/PlatformFederatedCredential.h b/Source/platform/credentialmanager/PlatformFederatedCredential.h
index 92a51daebd18b252cad8e7e417932b6702de9631..862adaf7f1fe3c17671ee597de6f43a20d282094 100644
--- a/Source/platform/credentialmanager/PlatformFederatedCredential.h
+++ b/Source/platform/credentialmanager/PlatformFederatedCredential.h
@@ -15,11 +15,11 @@ class PLATFORM_EXPORT PlatformFederatedCredential final : public PlatformCredent
WTF_MAKE_NONCOPYABLE(PlatformFederatedCredential);
public:
static PlatformFederatedCredential* create(const String& id, const KURL& federation, const String& name, const KURL& iconURL);
- virtual ~PlatformFederatedCredential();
+ ~PlatformFederatedCredential() override;
const KURL& provider() const { return m_provider; }
- virtual bool isFederated() override { return true; }
+ bool isFederated() override { return true; }
private:
PlatformFederatedCredential(const String& id, const KURL& federation, const String& name, const KURL& iconURL);
« no previous file with comments | « Source/platform/blob/BlobRegistry.cpp ('k') | Source/platform/credentialmanager/PlatformPasswordCredential.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698