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

Unified Diff: content/browser/file_descriptor_info_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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 | « content/browser/device_monitor_udev.h ('k') | content/browser/histogram_internals_request_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/file_descriptor_info_impl.h
diff --git a/content/browser/file_descriptor_info_impl.h b/content/browser/file_descriptor_info_impl.h
index f35ae74aad2ce201a3e51dd74eeea44500c4a2d0..cf6a4f256468d7e68ed936642903eee3e9ef92d7 100644
--- a/content/browser/file_descriptor_info_impl.h
+++ b/content/browser/file_descriptor_info_impl.h
@@ -17,14 +17,14 @@ class FileDescriptorInfoImpl : public FileDescriptorInfo {
CONTENT_EXPORT static scoped_ptr<FileDescriptorInfo> Create();
virtual ~FileDescriptorInfoImpl();
- virtual void Share(int id, base::PlatformFile fd) OVERRIDE;
- virtual void Transfer(int id, base::ScopedFD fd) OVERRIDE;
- virtual const base::FileHandleMappingVector& GetMapping() const OVERRIDE;
+ virtual void Share(int id, base::PlatformFile fd) override;
+ virtual void Transfer(int id, base::ScopedFD fd) override;
+ virtual const base::FileHandleMappingVector& GetMapping() const override;
virtual base::FileHandleMappingVector GetMappingWithIDAdjustment(
- int delta) const OVERRIDE;
- virtual base::PlatformFile GetFDAt(size_t i) const OVERRIDE;
- virtual int GetIDAt(size_t i) const OVERRIDE;
- virtual size_t GetMappingSize() const OVERRIDE;
+ int delta) const override;
+ virtual base::PlatformFile GetFDAt(size_t i) const override;
+ virtual int GetIDAt(size_t i) const override;
+ virtual size_t GetMappingSize() const override;
private:
FileDescriptorInfoImpl();
« no previous file with comments | « content/browser/device_monitor_udev.h ('k') | content/browser/histogram_internals_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698