Home | History | Annotate | Download | only in v8

Lines Matching defs:PageScriptDebugServer

32 #include "bindings/v8/PageScriptDebugServer.h"
67 PageScriptDebugServer& PageScriptDebugServer::shared()
69 DEFINE_STATIC_LOCAL(PageScriptDebugServer, server, ());
73 PageScriptDebugServer::PageScriptDebugServer()
79 void PageScriptDebugServer::addListener(ScriptDebugListener* listener, Page* page)
93 v8::Debug::SetDebugEventListener2(&PageScriptDebugServer::v8DebugEventCallback, v8::External::New(this));
112 void PageScriptDebugServer::removeListener(ScriptDebugListener* listener, Page* page)
127 void PageScriptDebugServer::setClientMessageLoop(PassOwnPtr<ClientMessageLoop> clientMessageLoop)
132 void PageScriptDebugServer::compileScript(ScriptState* state, const String& expression, const String& sourceURL, String* scriptId, String* exceptionMessage)
141 void PageScriptDebugServer::clearCompiledScripts()
147 void PageScriptDebugServer::runScript(ScriptState* state, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage)
164 ScriptDebugListener* PageScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context> context)
173 void PageScriptDebugServer::runMessageLoopOnPause(v8::Handle<v8::Context> context)
189 void PageScriptDebugServer::quitMessageLoopOnPause()