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

Unified Diff: chrome/browser/media_galleries/media_file_system_registry_unittest.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/media_file_system_registry_unittest.cc
diff --git a/chrome/browser/media_galleries/media_file_system_registry_unittest.cc b/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
index 0160fc060242b96bc760e109d5651837e757e508..e63ce003b5bf031efada87a4d4b762f28eafb2c8 100644
--- a/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
+++ b/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
@@ -80,12 +80,12 @@ class TestMediaFileSystemContext : public MediaFileSystemContext {
// MediaFileSystemContext implementation.
virtual bool RegisterFileSystem(const std::string& device_id,
const std::string& fs_name,
- const base::FilePath& path) OVERRIDE;
+ const base::FilePath& path) override;
- virtual void RevokeFileSystem(const std::string& fs_name) OVERRIDE;
+ virtual void RevokeFileSystem(const std::string& fs_name) override;
virtual base::FilePath GetRegisteredPath(
- const std::string& fs_name) const OVERRIDE;
+ const std::string& fs_name) const override;
MediaFileSystemRegistry* registry() { return registry_; }
@@ -201,7 +201,7 @@ class MockProfileSharedRenderProcessHostFactory
virtual content::RenderProcessHost* CreateRenderProcessHost(
content::BrowserContext* browser_context,
- content::SiteInstance* site_instance) const OVERRIDE;
+ content::SiteInstance* site_instance) const override;
private:
typedef std::map<content::BrowserContext*, content::MockRenderProcessHost*>
@@ -350,8 +350,8 @@ class MediaFileSystemRegistryTest : public ChromeRenderViewHostTestHarness {
}
protected:
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
+ virtual void SetUp() override;
+ virtual void TearDown() override;
private:
// This makes sure that at least one default gallery exists on the file

Powered by Google App Engine
This is Rietveld 408576698