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

Side by Side Diff: cc/resources/shared_bitmap.h

Issue 2909873002: Add cc::SharedBitmap::shared_memory_handle() (Closed)
Patch Set: fix tests Created 3 years, 6 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 | « no previous file | cc/resources/shared_bitmap.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 CC_RESOURCES_SHARED_BITMAP_H_ 5 #ifndef CC_RESOURCES_SHARED_BITMAP_H_
6 #define CC_RESOURCES_SHARED_BITMAP_H_ 6 #define CC_RESOURCES_SHARED_BITMAP_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/trace_event/memory_allocator_dump.h" 12 #include "base/trace_event/memory_allocator_dump.h"
13 #include "cc/cc_export.h" 13 #include "cc/cc_export.h"
14 #include "gpu/command_buffer/common/mailbox.h" 14 #include "gpu/command_buffer/common/mailbox.h"
15 #include "ui/gfx/geometry/size.h" 15 #include "ui/gfx/geometry/size.h"
16 16
17 namespace base {
18 class SharedMemoryHandle;
19 }
20
17 namespace cc { 21 namespace cc {
18 typedef gpu::Mailbox SharedBitmapId; 22 typedef gpu::Mailbox SharedBitmapId;
19 23
20 CC_EXPORT base::trace_event::MemoryAllocatorDumpGuid 24 CC_EXPORT base::trace_event::MemoryAllocatorDumpGuid
21 GetSharedBitmapGUIDForTracing(const SharedBitmapId& bitmap_id); 25 GetSharedBitmapGUIDForTracing(const SharedBitmapId& bitmap_id);
22 26
23 class CC_EXPORT SharedBitmap { 27 class CC_EXPORT SharedBitmap {
24 public: 28 public:
25 SharedBitmap(uint8_t* pixels, const SharedBitmapId& id); 29 SharedBitmap(uint8_t* pixels, const SharedBitmapId& id);
26 30
27 virtual ~SharedBitmap(); 31 virtual ~SharedBitmap();
28 32
29 uint8_t* pixels() { return pixels_; } 33 uint8_t* pixels() { return pixels_; }
30 34
31 const SharedBitmapId& id() { return id_; } 35 const SharedBitmapId& id() { return id_; }
32 36
37 // Returns the shared memory's handle when the back end is base::SharedMemory.
38 // Otherwise, this returns an invalid handle.
39 virtual base::SharedMemoryHandle GetSharedMemoryHandle() const = 0;
40
33 // Returns true if the size is valid and false otherwise. 41 // Returns true if the size is valid and false otherwise.
34 static bool SizeInBytes(const gfx::Size& size, size_t* size_in_bytes); 42 static bool SizeInBytes(const gfx::Size& size, size_t* size_in_bytes);
35 // Dies with a CRASH() if the size can not be represented as a positive number 43 // Dies with a CRASH() if the size can not be represented as a positive number
36 // of bytes. 44 // of bytes.
37 static size_t CheckedSizeInBytes(const gfx::Size& size); 45 static size_t CheckedSizeInBytes(const gfx::Size& size);
38 // Returns the size in bytes but may overflow or return 0. Only do this for 46 // Returns the size in bytes but may overflow or return 0. Only do this for
39 // sizes that have already been checked. 47 // sizes that have already been checked.
40 static size_t UncheckedSizeInBytes(const gfx::Size& size); 48 static size_t UncheckedSizeInBytes(const gfx::Size& size);
41 // Returns true if the size is valid and false otherwise. 49 // Returns true if the size is valid and false otherwise.
42 static bool VerifySizeInBytes(const gfx::Size& size); 50 static bool VerifySizeInBytes(const gfx::Size& size);
43 51
44 static SharedBitmapId GenerateId(); 52 static SharedBitmapId GenerateId();
45 53
46 private: 54 private:
47 uint8_t* pixels_; 55 uint8_t* pixels_;
48 SharedBitmapId id_; 56 SharedBitmapId id_;
49 57
50 DISALLOW_COPY_AND_ASSIGN(SharedBitmap); 58 DISALLOW_COPY_AND_ASSIGN(SharedBitmap);
51 }; 59 };
52 60
53 } // namespace cc 61 } // namespace cc
54 62
55 #endif // CC_RESOURCES_SHARED_BITMAP_H_ 63 #endif // CC_RESOURCES_SHARED_BITMAP_H_
OLDNEW
« no previous file with comments | « no previous file | cc/resources/shared_bitmap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698