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

Unified Diff: sync/syncable/on_disk_directory_backing_store.h

Issue 642023004: Standardize usage of virtual/override/final in sync/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « sync/syncable/invalid_directory_backing_store.h ('k') | sync/syncable/syncable_base_write_transaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/on_disk_directory_backing_store.h
diff --git a/sync/syncable/on_disk_directory_backing_store.h b/sync/syncable/on_disk_directory_backing_store.h
index 3a0649d1850d8d596873c0fd37ae60418564624a..fdeda4dfd772d5183f6be61bd9c406576ad32e10 100644
--- a/sync/syncable/on_disk_directory_backing_store.h
+++ b/sync/syncable/on_disk_directory_backing_store.h
@@ -19,11 +19,10 @@ class SYNC_EXPORT_PRIVATE OnDiskDirectoryBackingStore
public:
OnDiskDirectoryBackingStore(const std::string& dir_name,
const base::FilePath& backing_filepath);
- virtual ~OnDiskDirectoryBackingStore();
- virtual DirOpenResult Load(
- Directory::MetahandlesMap* handles_map,
- JournalIndex* delete_journals,
- Directory::KernelLoadInfo* kernel_load_info) override;
+ ~OnDiskDirectoryBackingStore() override;
+ DirOpenResult Load(Directory::MetahandlesMap* handles_map,
+ JournalIndex* delete_journals,
+ Directory::KernelLoadInfo* kernel_load_info) override;
// A helper function that will make one attempt to load the directory.
// Unlike Load(), it does not attempt to recover from failure.
« no previous file with comments | « sync/syncable/invalid_directory_backing_store.h ('k') | sync/syncable/syncable_base_write_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698