Searched defs:CppBindingExample (Results 1 - 4 of 4) sorted by relevance

/external/chromium/webkit/glue/
H A Dcpp_binding_example.h6 CppBindingExample class:
38 class CppBindingExample : public CppBoundClass { class in inherits:CppBoundClass
42 CppBindingExample();
H A Dcpp_binding_example.cc5 // This file contains the definition for CppBindingExample, which is used in
30 CppBindingExample::CppBindingExample() { function in class:CppBindingExample
40 BindProperty("same", &CppBindingExample::same);
43 BindMethod("echoValue", &CppBindingExample::echoValue);
44 BindMethod("echoType", &CppBindingExample::echoType);
45 BindMethod("plus", &CppBindingExample::plus);
50 BindFallbackMethod(&CppBindingExample::fallbackMethod);
56 void CppBindingExample::echoValue(const CppArgumentList& args,
65 void CppBindingExample
[all...]
/external/chromium_org/content/test/
H A Dcpp_binding_example.h9 CppBindingExample class:
40 class CppBindingExample : public webkit_glue::CppBoundClass { class in namespace:content
44 CppBindingExample();
H A Dcpp_binding_example.cc38 CppBindingExample::CppBindingExample() { function in class:content::CppBindingExample
48 BindGetterCallback("same", base::Bind(&CppBindingExample::same,
52 BindCallback("echoValue", base::Bind(&CppBindingExample::echoValue,
54 BindCallback("echoType", base::Bind(&CppBindingExample::echoType,
56 BindCallback("plus", base::Bind(&CppBindingExample::plus,
62 BindFallbackCallback(base::Bind(&CppBindingExample::fallbackMethod,
69 void CppBindingExample::echoValue(const CppArgumentList& args,
78 void CppBindingExample::echoType(const CppArgumentList& args,
98 void CppBindingExample
[all...]

Completed in 130 milliseconds