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

Unified Diff: Source/web/LocalFileSystemClient.h

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (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
« no previous file with comments | « Source/web/LinkHighlight.h ('k') | Source/web/MIDIClientProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/LocalFileSystemClient.h
diff --git a/Source/web/LocalFileSystemClient.h b/Source/web/LocalFileSystemClient.h
index 202f8114f9d3ffc1da335b1e38a800b1f412efed..597d55f348f010eb71ee16fc45c00377d791d2e7 100644
--- a/Source/web/LocalFileSystemClient.h
+++ b/Source/web/LocalFileSystemClient.h
@@ -40,10 +40,10 @@ class LocalFileSystemClient final : public FileSystemClient {
public:
static PassOwnPtr<FileSystemClient> create();
- virtual ~LocalFileSystemClient();
+ ~LocalFileSystemClient() override;
- virtual bool requestFileSystemAccessSync(ExecutionContext*) override;
- virtual void requestFileSystemAccessAsync(ExecutionContext*, PassOwnPtr<ContentSettingCallbacks>) override;
+ bool requestFileSystemAccessSync(ExecutionContext*) override;
+ void requestFileSystemAccessAsync(ExecutionContext*, PassOwnPtr<ContentSettingCallbacks>) override;
private:
LocalFileSystemClient();
« no previous file with comments | « Source/web/LinkHighlight.h ('k') | Source/web/MIDIClientProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698