HomeSort by relevance Sort by last modified time
    Searched refs:BindProperty (Results 1 - 4 of 4) sorted by null

  /external/chromium/webkit/glue/
cpp_binding_example.cc 34 BindProperty("my_value", &my_value);
35 BindProperty("my_other_value", &my_other_value);
38 BindProperty("my_value_with_callback", new PropertyCallbackExample());
40 BindProperty("same", &CppBindingExample::same);
cpp_bound_class.h 51 // The constructor should call BindMethod, BindProperty, and
57 // Return a CppVariant representing this class, for use with BindProperty().
102 void BindProperty(const std::string& name, void (T::*method)(CppVariant*)) {
109 void BindProperty(const std::string& name, CppVariant* prop);
113 void BindProperty(const std::string& name, PropertyCallback* callback);
cpp_bound_class_unittest.cc 29 BindProperty("sub_value", &sub_value_);
39 BindProperty("sub_object", sub_object_.GetAsCppVariant());
cpp_bound_class.cc 275 BindProperty(name, property_callback);
278 void CppBoundClass::BindProperty(const std::string& name, CppVariant* prop) {
282 BindProperty(name, property_callback);
285 void CppBoundClass::BindProperty(const std::string& name,

Completed in 87 milliseconds