Chromium Code Reviews

Unified Diff: components/enhanced_bookmarks/image_store_util_ios.mm

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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.
Jump to:
View side-by-side diff with in-line comments
Index: components/enhanced_bookmarks/image_store_util_ios.mm
diff --git a/components/enhanced_bookmarks/image_store_util_ios.mm b/components/enhanced_bookmarks/image_store_util_ios.mm
index 4b27dcebf77a4a9cfef315b443d63eec25a4cc20..8e6b53f3afbcdbf539918b90b3268b6b4b6a0ef7 100644
--- a/components/enhanced_bookmarks/image_store_util_ios.mm
+++ b/components/enhanced_bookmarks/image_store_util_ios.mm
@@ -16,11 +16,11 @@ class RefCountedNSDataMemory : public base::RefCountedMemory {
public:
explicit RefCountedNSDataMemory(NSData* memory) : data_([memory retain]) {}
- virtual const unsigned char* front() const OVERRIDE {
+ virtual const unsigned char* front() const override {
return reinterpret_cast<const unsigned char*>([data_ bytes]);
}
- virtual size_t size() const OVERRIDE {
+ virtual size_t size() const override {
return [data_ length];
}
« no previous file with comments | « components/enhanced_bookmarks/image_store_unittest.cc ('k') | components/enhanced_bookmarks/persistent_image_store.h » ('j') | no next file with comments »

Powered by Google App Engine