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

Side by Side Diff: content/child/child_shared_bitmap_manager.h

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (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. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/child/child_resource_message_filter.h ('k') | content/child/child_thread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_CHILD_CHILD_SHARED_BITMAP_MANAGER_H_ 5 #ifndef CONTENT_CHILD_CHILD_SHARED_BITMAP_MANAGER_H_
6 #define CONTENT_CHILD_CHILD_SHARED_BITMAP_MANAGER_H_ 6 #define CONTENT_CHILD_CHILD_SHARED_BITMAP_MANAGER_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/shared_memory.h" 10 #include "base/memory/shared_memory.h"
11 #include "cc/resources/shared_bitmap_manager.h" 11 #include "cc/resources/shared_bitmap_manager.h"
12 #include "content/child/thread_safe_sender.h" 12 #include "content/child/thread_safe_sender.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 class ChildSharedBitmapManager : public cc::SharedBitmapManager { 16 class ChildSharedBitmapManager : public cc::SharedBitmapManager {
17 public: 17 public:
18 ChildSharedBitmapManager(scoped_refptr<ThreadSafeSender> sender); 18 ChildSharedBitmapManager(scoped_refptr<ThreadSafeSender> sender);
19 virtual ~ChildSharedBitmapManager(); 19 virtual ~ChildSharedBitmapManager();
20 20
21 virtual scoped_ptr<cc::SharedBitmap> AllocateSharedBitmap( 21 virtual scoped_ptr<cc::SharedBitmap> AllocateSharedBitmap(
22 const gfx::Size& size) OVERRIDE; 22 const gfx::Size& size) override;
23 virtual scoped_ptr<cc::SharedBitmap> GetSharedBitmapFromId( 23 virtual scoped_ptr<cc::SharedBitmap> GetSharedBitmapFromId(
24 const gfx::Size&, 24 const gfx::Size&,
25 const cc::SharedBitmapId&) OVERRIDE; 25 const cc::SharedBitmapId&) override;
26 virtual scoped_ptr<cc::SharedBitmap> GetBitmapForSharedMemory( 26 virtual scoped_ptr<cc::SharedBitmap> GetBitmapForSharedMemory(
27 base::SharedMemory* mem) OVERRIDE; 27 base::SharedMemory* mem) override;
28 28
29 private: 29 private:
30 scoped_refptr<ThreadSafeSender> sender_; 30 scoped_refptr<ThreadSafeSender> sender_;
31 31
32 DISALLOW_COPY_AND_ASSIGN(ChildSharedBitmapManager); 32 DISALLOW_COPY_AND_ASSIGN(ChildSharedBitmapManager);
33 }; 33 };
34 34
35 } // namespace content 35 } // namespace content
36 36
37 #endif // CONTENT_CHILD_CHILD_SHARED_BITMAP_MANAGER_H_ 37 #endif // CONTENT_CHILD_CHILD_SHARED_BITMAP_MANAGER_H_
OLDNEW
« no previous file with comments | « content/child/child_resource_message_filter.h ('k') | content/child/child_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698