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

Side by Side Diff: webkit/plugins/ppapi/ppb_image_data_impl.cc

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 | « webkit/plugins/ppapi/ppb_graphics_2d_impl.cc ('k') | webkit/plugins/ppapi/var.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 #include "webkit/plugins/ppapi/ppb_image_data_impl.h" 5 #include "webkit/plugins/ppapi/ppb_image_data_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 15 matching lines...) Expand all
26 namespace { 26 namespace {
27 27
28 PP_ImageDataFormat GetNativeImageDataFormat() { 28 PP_ImageDataFormat GetNativeImageDataFormat() {
29 return PPB_ImageData_Impl::GetNativeImageDataFormat(); 29 return PPB_ImageData_Impl::GetNativeImageDataFormat();
30 } 30 }
31 31
32 PP_Bool IsImageDataFormatSupported(PP_ImageDataFormat format) { 32 PP_Bool IsImageDataFormatSupported(PP_ImageDataFormat format) {
33 return BoolToPPBool(PPB_ImageData_Impl::IsImageDataFormatSupported(format)); 33 return BoolToPPBool(PPB_ImageData_Impl::IsImageDataFormatSupported(format));
34 } 34 }
35 35
36 PP_Resource Create(PP_Module module_id, 36 PP_Resource Create(PP_Instance instance_id,
37 PP_ImageDataFormat format, 37 PP_ImageDataFormat format,
38 const PP_Size* size, 38 const PP_Size* size,
39 PP_Bool init_to_zero) { 39 PP_Bool init_to_zero) {
40 PluginModule* module = ResourceTracker::Get()->GetModule(module_id); 40 PluginInstance* instance = ResourceTracker::Get()->GetInstance(instance_id);
41 if (!module) 41 if (!instance)
42 return 0; 42 return 0;
43 43
44 scoped_refptr<PPB_ImageData_Impl> data(new PPB_ImageData_Impl(module)); 44 scoped_refptr<PPB_ImageData_Impl> data(
45 new PPB_ImageData_Impl(instance->module()));
45 if (!data->Init(format, 46 if (!data->Init(format,
46 size->width, 47 size->width,
47 size->height, 48 size->height,
48 PPBoolToBool(init_to_zero))) { 49 PPBoolToBool(init_to_zero))) {
49 return 0; 50 return 0;
50 } 51 }
51 52
52 return data->GetReference(); 53 return data->GetReference();
53 } 54 }
54 55
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 swap(other->platform_image_, platform_image_); 218 swap(other->platform_image_, platform_image_);
218 swap(other->mapped_canvas_, mapped_canvas_); 219 swap(other->mapped_canvas_, mapped_canvas_);
219 std::swap(other->format_, format_); 220 std::swap(other->format_, format_);
220 std::swap(other->width_, width_); 221 std::swap(other->width_, width_);
221 std::swap(other->height_, height_); 222 std::swap(other->height_, height_);
222 } 223 }
223 224
224 } // namespace ppapi 225 } // namespace ppapi
225 } // namespace webkit 226 } // namespace webkit
226 227
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_graphics_2d_impl.cc ('k') | webkit/plugins/ppapi/var.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698