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

Side by Side Diff: ppapi/tests/test_class.cc

Issue 6072003: PPB_Class simple test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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
« ppapi/tests/test_class.h ('K') | « ppapi/tests/test_class.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ppapi/tests/test_class.h"
6
7 #include <limits>
8
9 #include "ppapi/c/pp_var.h"
10 #include "ppapi/c/ppb_class.h"
11 #include "ppapi/c/ppb_var.h"
12 #include "ppapi/c/dev/ppb_testing_dev.h"
13 #include "ppapi/cpp/instance.h"
14 #include "ppapi/cpp/module.h"
15 #include "ppapi/cpp/var.h"
16 #include "ppapi/tests/testing_instance.h"
17
18 REGISTER_TEST_CASE(Class);
19
20 bool TestClass::Init() {
21 class_interface_ = reinterpret_cast<PPB_Class const*>(
polina 2010/12/21 03:43:28 const PPB_Class* ?
neb 2011/01/05 23:51:09 It means the same thing so long it's on the left s
22 pp::Module::Get()->GetBrowserInterface(PPB_CLASS_INTERFACE));
23 testing_interface_ = reinterpret_cast<PPB_Testing_Dev const*>(
24 pp::Module::Get()->GetBrowserInterface(PPB_TESTING_DEV_INTERFACE));
25 if (!testing_interface_) {
26 // Give a more helpful error message for the testing interface being gone
27 // since that needs special enabling in Chrome.
28 instance_->AppendError("This test needs the testing interface, which is "
29 "not currently available. In Chrome, use --enable-pepper-testing when "
30 "launching.");
31 }
32 return class_interface_ && testing_interface_;
33 }
34
35 void TestClass::RunTest() {
36 RUN_TEST(ConstructEmptyObject);
37 }
38
39 std::string TestClass::TestConstructEmptyObject() {
40 PP_ClassProperty properties[] = { { NULL } };
41 PP_Resource object_class = class_interface_->Create(
42 pp::Module::Get()->pp_module(), NULL, NULL, properties);
43 ASSERT_TRUE(object_class != 0);
44
45 pp::Var instance(pp::Var::PassRef(),
46 class_interface_->Instantiate(object_class, NULL, NULL));
47 ASSERT_TRUE(instance.is_object());
48 return std::string();
polina 2010/12/21 03:43:28 return "" would be more readable
neb 2011/01/05 23:51:09 "" is not a string, so this would be calling an im
49 }
50
OLDNEW
« ppapi/tests/test_class.h ('K') | « ppapi/tests/test_class.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698