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

Unified Diff: cc/test/test_shared_bitmap_manager.h

Issue 645853008: Standardize usage of virtual/override/final in cc/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Formatted 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 | « cc/test/test_in_process_context_provider.h ('k') | cc/test/tiled_layer_test_common.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/test_shared_bitmap_manager.h
diff --git a/cc/test/test_shared_bitmap_manager.h b/cc/test/test_shared_bitmap_manager.h
index ccda52c01172b895f782b6e7f3a90a1941684dde..9163c793a1448bf1979e4ee012bb84c86a33dc77 100644
--- a/cc/test/test_shared_bitmap_manager.h
+++ b/cc/test/test_shared_bitmap_manager.h
@@ -15,16 +15,15 @@ namespace cc {
class TestSharedBitmapManager : public SharedBitmapManager {
public:
TestSharedBitmapManager();
- virtual ~TestSharedBitmapManager();
+ ~TestSharedBitmapManager() override;
- virtual scoped_ptr<SharedBitmap> AllocateSharedBitmap(const gfx::Size& size)
- override;
+ scoped_ptr<SharedBitmap> AllocateSharedBitmap(const gfx::Size& size) override;
- virtual scoped_ptr<SharedBitmap> GetSharedBitmapFromId(
+ scoped_ptr<SharedBitmap> GetSharedBitmapFromId(
const gfx::Size&,
const SharedBitmapId& id) override;
- virtual scoped_ptr<SharedBitmap> GetBitmapForSharedMemory(
+ scoped_ptr<SharedBitmap> GetBitmapForSharedMemory(
base::SharedMemory* memory) override;
private:
« no previous file with comments | « cc/test/test_in_process_context_provider.h ('k') | cc/test/tiled_layer_test_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698