Searched defs:CppBoundClass (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/webkit/renderer/
H A Dcpp_bound_class.h6 CppBoundClass class:
36 // CppBoundClass lets you map Javascript method calls and property accesses
38 class WEBKIT_RENDERER_EXPORT CppBoundClass { class in namespace:webkit_glue
55 CppBoundClass();
56 virtual ~CppBoundClass();
63 // this CppBoundClass object and binds it to the frame's window under the
65 // WindowObjectCleared(). This CppBoundClass object will be accessible to
66 // JavaScript as window.<classname>. The owner of this CppBoundClass object is
92 // CppBoundClass assumes control over the life time of the |callback|.
142 DISALLOW_COPY_AND_ASSIGN(CppBoundClass);
[all...]
H A Dcpp_bound_class.cc5 // This file contains definitions for CppBoundClass
10 // CppBoundClass's Invoke() method.
11 // - CppBoundClass has then overridden Invoke() to look up the function
32 class CppVariantPropertyCallback : public CppBoundClass::PropertyCallback {
49 class GetterPropertyCallback : public CppBoundClass::PropertyCallback {
51 GetterPropertyCallback(const CppBoundClass::GetterCallback& callback)
64 CppBoundClass::GetterCallback callback_;
70 // CppBoundClass, which is just a C++ interface that we forward all NPObject
74 CppBoundClass* bound_class;
180 CppBoundClass function in class:webkit_glue::CppBoundClass
[all...]
/external/chromium/webkit/glue/
H A Dcpp_bound_class.h6 CppBoundClass class:
35 // CppBoundClass lets you map Javascript method calls and property accesses
37 class CppBoundClass { class
54 CppBoundClass();
55 virtual ~CppBoundClass();
84 // must be a method of this CppBoundClass subclass.
100 // must be a method of this CppBoundClass subclass.
112 // CppBoundClass assumes control over the life time of the |callback|.
131 // |method| must be a method of this CppBoundClass subclass.
177 DISALLOW_COPY_AND_ASSIGN(CppBoundClass);
[all...]
H A Dcpp_bound_class.cc5 // This file contains definitions for CppBoundClass
10 // CppBoundClass's Invoke() method.
11 // - CppBoundClass has then overridden Invoke() to look up the function
28 class CppVariantPropertyCallback : public CppBoundClass::PropertyCallback {
45 class GetterPropertyCallback : public CppBoundClass::PropertyCallback {
47 GetterPropertyCallback(CppBoundClass::GetterCallback* callback)
60 scoped_ptr<CppBoundClass::GetterCallback> callback_;
66 // CppBoundClass, which is just a C++ interface that we forward all NPObject
70 CppBoundClass* bound_class;
176 CppBoundClass function in class:CppBoundClass
[all...]
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DCppBoundClass.cpp32 // This file contains definitions for CppBoundClass
37 // CppBoundClass's invoke() method.
38 // - CppBoundClass has then overridden invoke() to look up the function
42 #include "CppBoundClass.h"
57 class CppVariantPropertyCallback : public CppBoundClass::PropertyCallback {
77 class GetterPropertyCallback : public CppBoundClass::PropertyCallback {
79 GetterPropertyCallback(auto_ptr<CppBoundClass::GetterCallback> callback)
93 auto_ptr<CppBoundClass::GetterCallback> m_callback;
99 // CppBoundClass, which is just a C++ interface that we forward all NPObject
103 CppBoundClass* boundClas
[all...]
H A DCppBoundClass.h33 CppBoundClass class:
60 // CppBoundClass lets you map Javascript method calls and property accesses
62 class CppBoundClass { class in namespace:WebTestRunner
86 CppBoundClass() : m_boundToFrame(false) { } function in class:WebTestRunner::CppBoundClass
87 virtual ~CppBoundClass();
154 // must be a method of this CppBoundClass subclass.
168 // must be a method of this CppBoundClass subclass.
180 // CppBoundClass assumes control over the life time of the callback.
200 // |method| must be a method of this CppBoundClass subclass.
243 CppBoundClass(CppBoundClas
[all...]

Completed in 637 milliseconds