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

Side by Side Diff: ppapi/tests/test_buffer.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 | « ppapi/example/example.cc ('k') | ppapi/tests/test_case.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 "ppapi/tests/test_buffer.h" 5 #include "ppapi/tests/test_buffer.h"
6 6
7 #include "ppapi/c/dev/ppb_buffer_dev.h" 7 #include "ppapi/c/dev/ppb_buffer_dev.h"
8 #include "ppapi/cpp/dev/buffer_dev.h" 8 #include "ppapi/cpp/dev/buffer_dev.h"
9 #include "ppapi/cpp/graphics_2d.h" 9 #include "ppapi/cpp/graphics_2d.h"
10 #include "ppapi/cpp/instance.h" 10 #include "ppapi/cpp/instance.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 } 52 }
53 53
54 std::string TestBuffer::TestIsBuffer() { 54 std::string TestBuffer::TestIsBuffer() {
55 // Test that a NULL resource isn't a buffer. 55 // Test that a NULL resource isn't a buffer.
56 pp::Resource null_resource; 56 pp::Resource null_resource;
57 if (buffer_interface_->IsBuffer(null_resource.pp_resource())) 57 if (buffer_interface_->IsBuffer(null_resource.pp_resource()))
58 return "Null resource was reported as a valid buffer"; 58 return "Null resource was reported as a valid buffer";
59 59
60 // Make another resource type and test it. 60 // Make another resource type and test it.
61 const int w = 16, h = 16; 61 const int w = 16, h = 16;
62 pp::Graphics2D device(pp::Size(w, h), true); 62 pp::Graphics2D device(instance_, pp::Size(w, h), true);
63 if (device.is_null()) 63 if (device.is_null())
64 return "Couldn't create device context"; 64 return "Couldn't create device context";
65 if (buffer_interface_->IsBuffer(device.pp_resource())) 65 if (buffer_interface_->IsBuffer(device.pp_resource()))
66 return "Device context was reported as a buffer"; 66 return "Device context was reported as a buffer";
67 67
68 // Make a valid buffer. 68 // Make a valid buffer.
69 pp::Buffer_Dev buffer(100); 69 pp::Buffer_Dev buffer(100);
70 if (buffer.is_null()) 70 if (buffer.is_null())
71 return "Couldn't create buffer"; 71 return "Couldn't create buffer";
72 if (!buffer_interface_->IsBuffer(buffer.pp_resource())) 72 if (!buffer_interface_->IsBuffer(buffer.pp_resource()))
73 return "Buffer should be identified as a buffer"; 73 return "Buffer should be identified as a buffer";
74 74
75 return ""; 75 return "";
76 } 76 }
77 77
OLDNEW
« no previous file with comments | « ppapi/example/example.cc ('k') | ppapi/tests/test_case.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698