OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 PPAPI_CPP_IMAGE_DATA_H_ | 5 #ifndef PPAPI_CPP_IMAGE_DATA_H_ |
6 #define PPAPI_CPP_IMAGE_DATA_H_ | 6 #define PPAPI_CPP_IMAGE_DATA_H_ |
7 | 7 |
8 #include "ppapi/c/ppb_image_data.h" | 8 #include "ppapi/c/ppb_image_data.h" |
9 #include "ppapi/cpp/point.h" | 9 #include "ppapi/cpp/point.h" |
10 #include "ppapi/cpp/size.h" | 10 #include "ppapi/cpp/size.h" |
11 #include "ppapi/cpp/resource.h" | 11 #include "ppapi/cpp/resource.h" |
12 | 12 |
13 namespace pp { | 13 namespace pp { |
14 | 14 |
| 15 class Instance; |
15 class Plugin; | 16 class Plugin; |
16 | 17 |
17 class ImageData : public Resource { | 18 class ImageData : public Resource { |
18 public: | 19 public: |
19 // Creates an is_null() ImageData object. | 20 // Creates an is_null() ImageData object. |
20 ImageData(); | 21 ImageData(); |
21 | 22 |
22 // This magic constructor is used when we've gotten a PP_Resource as a return | 23 // This magic constructor is used when we've gotten a PP_Resource as a return |
23 // value that has already been addref'ed for us. | 24 // value that has already been addref'ed for us. |
24 struct PassRef {}; | 25 struct PassRef {}; |
25 ImageData(PassRef, PP_Resource resource); | 26 ImageData(PassRef, PP_Resource resource); |
26 | 27 |
27 ImageData(const ImageData& other); | 28 ImageData(const ImageData& other); |
28 | 29 |
29 // Allocates a new ImageData in the browser with the given parameters. The | 30 // Allocates a new ImageData in the browser with the given parameters. The |
30 // resulting object will be is_null() if the allocation failed. | 31 // resulting object will be is_null() if the allocation failed. |
31 ImageData(PP_ImageDataFormat format, | 32 ImageData(Instance* instance, |
| 33 PP_ImageDataFormat format, |
32 const Size& size, | 34 const Size& size, |
33 bool init_to_zero); | 35 bool init_to_zero); |
34 | 36 |
35 ImageData& operator=(const ImageData& other); | 37 ImageData& operator=(const ImageData& other); |
36 | 38 |
37 // Returns the browser's preferred format for images. Using this format | 39 // Returns the browser's preferred format for images. Using this format |
38 // guarantees no extra conversions will occur when painting. | 40 // guarantees no extra conversions will occur when painting. |
39 static PP_ImageDataFormat GetNativeImageDataFormat(); | 41 static PP_ImageDataFormat GetNativeImageDataFormat(); |
40 | 42 |
41 PP_ImageDataFormat format() const { return desc_.format; } | 43 PP_ImageDataFormat format() const { return desc_.format; } |
(...skipping 11 matching lines...) Expand all Loading... |
53 private: | 55 private: |
54 void PassRefAndInitData(PP_Resource resource); | 56 void PassRefAndInitData(PP_Resource resource); |
55 | 57 |
56 PP_ImageDataDesc desc_; | 58 PP_ImageDataDesc desc_; |
57 void* data_; | 59 void* data_; |
58 }; | 60 }; |
59 | 61 |
60 } // namespace pp | 62 } // namespace pp |
61 | 63 |
62 #endif // PPAPI_CPP_IMAGE_DATA_H_ | 64 #endif // PPAPI_CPP_IMAGE_DATA_H_ |
OLD | NEW |