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

Unified Diff: chrome/browser/media_galleries/fileapi/iphoto_file_util.h

Issue 660343006: Standardize usage of virtual/override/final in chrome/browser/media_galleries (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
Index: chrome/browser/media_galleries/fileapi/iphoto_file_util.h
diff --git a/chrome/browser/media_galleries/fileapi/iphoto_file_util.h b/chrome/browser/media_galleries/fileapi/iphoto_file_util.h
index d93628177b991d3fc471ffde87e71c2bf6da303d..1318442df25d90aca780bb59783a534602885537 100644
--- a/chrome/browser/media_galleries/fileapi/iphoto_file_util.h
+++ b/chrome/browser/media_galleries/fileapi/iphoto_file_util.h
@@ -32,38 +32,37 @@ extern const char kIPhotoAlbumsDir[];
class IPhotoFileUtil : public NativeMediaFileUtil {
public:
explicit IPhotoFileUtil(MediaPathFilter* media_path_filter);
- virtual ~IPhotoFileUtil();
+ ~IPhotoFileUtil() override;
protected:
// NativeMediaFileUtil overrides.
- virtual void GetFileInfoOnTaskRunnerThread(
+ void GetFileInfoOnTaskRunnerThread(
scoped_ptr<storage::FileSystemOperationContext> context,
const storage::FileSystemURL& url,
const GetFileInfoCallback& callback) override;
- virtual void ReadDirectoryOnTaskRunnerThread(
+ void ReadDirectoryOnTaskRunnerThread(
scoped_ptr<storage::FileSystemOperationContext> context,
const storage::FileSystemURL& url,
const ReadDirectoryCallback& callback) override;
- virtual void CreateSnapshotFileOnTaskRunnerThread(
+ void CreateSnapshotFileOnTaskRunnerThread(
scoped_ptr<storage::FileSystemOperationContext> context,
const storage::FileSystemURL& url,
const CreateSnapshotFileCallback& callback) override;
- virtual base::File::Error GetFileInfoSync(
+ base::File::Error GetFileInfoSync(
storage::FileSystemOperationContext* context,
const storage::FileSystemURL& url,
base::File::Info* file_info,
base::FilePath* platform_path) override;
- virtual base::File::Error ReadDirectorySync(
+ base::File::Error ReadDirectorySync(
storage::FileSystemOperationContext* context,
const storage::FileSystemURL& url,
EntryList* file_list) override;
- virtual base::File::Error DeleteDirectorySync(
+ base::File::Error DeleteDirectorySync(
storage::FileSystemOperationContext* context,
const storage::FileSystemURL& url) override;
- virtual base::File::Error DeleteFileSync(
- storage::FileSystemOperationContext* context,
- const storage::FileSystemURL& url) override;
- virtual base::File::Error GetLocalFilePath(
+ base::File::Error DeleteFileSync(storage::FileSystemOperationContext* context,
+ const storage::FileSystemURL& url) override;
+ base::File::Error GetLocalFilePath(
storage::FileSystemOperationContext* context,
const storage::FileSystemURL& url,
base::FilePath* local_file_path) override;

Powered by Google App Engine
This is Rietveld 408576698