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

  /external/webkit/WebKit/chromium/src/
BoundObject.h 39 // BoundObject is a helper class that lets you map JavaScript method calls
42 class BoundObject : public Noncopyable {
44 BoundObject(v8::Handle<v8::Context> context, void* v8This, const char* objectName);
45 virtual ~BoundObject();
BoundObject.cpp 32 #include "BoundObject.h"
38 BoundObject::BoundObject(v8::Handle<v8::Context> context, void* v8This, const char* objectName)
49 BoundObject::~BoundObject()
54 void BoundObject::addProtoFunction(const char* name, v8::InvocationCallback callback)
69 void BoundObject::build()
73 v8::Local<v8::Object> boundObject = WebCore::SafeAllocation::newInstance(constructor);
76 global->Set(v8::String::New(m_objectName), boundObject);
DevToolsRPCJS.h 37 #include "BoundObject.h"
112 BoundObject boundObj(context, this, classname); \
WebDevToolsFrontendImpl.cpp 34 #include "BoundObject.h"
112 BoundObject debuggerCommandExecutorObj(frameContext, this, "RemoteDebuggerCommandExecutor");
121 BoundObject devToolsHost(frameContext, this, "InspectorFrontendHost");
WebDevToolsAgentImpl.cpp 34 #include "BoundObject.h"
322 BoundObject devtoolsAgentHost(m_utilityContext, this, "DevToolsAgentHost");

Completed in 20 milliseconds