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

Unified Diff: base/memory/discardable_memory_allocator_android.cc

Issue 141283006: Remove stale 'virtual' in DiscardableMemoryAllocator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/memory/discardable_memory_allocator_android.cc
diff --git a/base/memory/discardable_memory_allocator_android.cc b/base/memory/discardable_memory_allocator_android.cc
index 7ca5e7d18f4fbeb309d3c205312dd0bee4d767b1..aea9451185030a91092a66991201481f3d402ee2 100644
--- a/base/memory/discardable_memory_allocator_android.cc
+++ b/base/memory/discardable_memory_allocator_android.cc
@@ -124,7 +124,7 @@ class DiscardableMemoryAllocator::AshmemRegion {
return make_scoped_ptr(new AshmemRegion(fd, size, base, allocator));
}
- virtual ~AshmemRegion() {
+ ~AshmemRegion() {
const bool result = internal::CloseAshmemRegion(fd_, size_, base_);
DCHECK(result);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698