Home
last modified time | relevance | path

Searched refs:CppBindingExample (Results 1 – 3 of 3) sorted by relevance

/external/chromium/webkit/glue/
Dcpp_binding_example.cc30 CppBindingExample::CppBindingExample() { in CppBindingExample() function in CppBindingExample
40 BindProperty("same", &CppBindingExample::same); in CppBindingExample()
43 BindMethod("echoValue", &CppBindingExample::echoValue); in CppBindingExample()
44 BindMethod("echoType", &CppBindingExample::echoType); in CppBindingExample()
45 BindMethod("plus", &CppBindingExample::plus); in CppBindingExample()
50 BindFallbackMethod(&CppBindingExample::fallbackMethod); in CppBindingExample()
56 void CppBindingExample::echoValue(const CppArgumentList& args, in echoValue()
65 void CppBindingExample::echoType(const CppArgumentList& args, in echoType()
85 void CppBindingExample::plus(const CppArgumentList& args, in plus()
116 void CppBindingExample::same(CppVariant* result) { in same()
[all …]
Dcpp_binding_example.h38 class CppBindingExample : public CppBoundClass {
42 CppBindingExample();
Dcpp_bound_class_unittest.cc25 class CppBindingExampleSubObject : public CppBindingExample {
36 class CppBindingExampleWithOptionalFallback : public CppBindingExample {