Index: chrome/browser/extensions/api/file_system/entry_watcher_service.h |
diff --git a/chrome/browser/extensions/api/file_system/entry_watcher_service.h b/chrome/browser/extensions/api/file_system/entry_watcher_service.h |
index a75448e3c0bc46d40bd99c575fd1c129acdb263e..5b3ddd44210833c928774418587f93dd8aab0f08 100644 |
--- a/chrome/browser/extensions/api/file_system/entry_watcher_service.h |
+++ b/chrome/browser/extensions/api/file_system/entry_watcher_service.h |
@@ -43,7 +43,7 @@ class EntryWatcherService : public KeyedService, |
content::BrowserContext* context)> GetFileSystemContextImplCallback; |
explicit EntryWatcherService(content::BrowserContext* context); |
- virtual ~EntryWatcherService(); |
+ ~EntryWatcherService() override; |
// Watches a directory. Only one watcher can be set per the same |url| and |
// |extension_id|. |
@@ -61,8 +61,8 @@ class EntryWatcherService : public KeyedService, |
const std::string& extension_id); |
// storage::WatcherManager::Observer overrides. |
- virtual void OnEntryChanged(const storage::FileSystemURL& url) override; |
- virtual void OnEntryRemoved(const storage::FileSystemURL& url) override; |
+ void OnEntryChanged(const storage::FileSystemURL& url) override; |
+ void OnEntryRemoved(const storage::FileSystemURL& url) override; |
// Sets a custom dispatcher for tests in order to be able to verify dispatched |
// events. |