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

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

Issue 382133002: Fix use-after-free of ChildSharedBitmapManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/child/child_shared_bitmap_manager.cc » ('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 void FreeSharedMemory(cc::SharedBitmap* bitmap);
31 void ReleaseSharedBitmap(cc::SharedBitmap*);
32
33 scoped_refptr<ThreadSafeSender> sender_; 30 scoped_refptr<ThreadSafeSender> sender_;
34 31
35 DISALLOW_COPY_AND_ASSIGN(ChildSharedBitmapManager); 32 DISALLOW_COPY_AND_ASSIGN(ChildSharedBitmapManager);
36 }; 33 };
37 34
38 } // namespace content 35 } // namespace content
39 36
40 #endif // CONTENT_CHILD_CHILD_SHARED_BITMAP_MANAGER_H_ 37 #endif // CONTENT_CHILD_CHILD_SHARED_BITMAP_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | content/child/child_shared_bitmap_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698