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

Side by Side Diff: ppapi/cpp/image_data.h

Issue 6085009: Add an instance parameter to var objects, audio, and the 2D API. This replace... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | « ppapi/cpp/graphics_2d.cc ('k') | ppapi/cpp/image_data.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) 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
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_
OLDNEW
« no previous file with comments | « ppapi/cpp/graphics_2d.cc ('k') | ppapi/cpp/image_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698