• Home
  • Raw
  • Download

Lines Matching refs:InjectedScript

64 class InjectedScript::ProtocolPromiseHandler {
163 InjectedScript::ContextScope scope(session, m_executionContextId); in thenCallback()
188 InjectedScript::ContextScope scope(session, m_executionContextId); in catchCallback()
241 InjectedScript::ContextScope scope(session, m_executionContextId); in sendPromiseCollected()
261 std::unique_ptr<InjectedScript> InjectedScript::create( in create()
312 std::unique_ptr<InjectedScript> injectedScript(new InjectedScript( in create()
323 InjectedScript::InjectedScript(InspectedContext* context, in InjectedScript() function in v8_inspector::InjectedScript
329 InjectedScript::~InjectedScript() { discardEvaluateCallbacks(); } in ~InjectedScript()
331 Response InjectedScript::getProperties( in getProperties()
368 void InjectedScript::releaseObject(const String16& objectId) { in releaseObject()
380 Response InjectedScript::wrapObject( in wrapObject()
401 Response InjectedScript::wrapValue(v8::Local<v8::Value> value, in wrapValue()
417 std::unique_ptr<protocol::Runtime::RemoteObject> InjectedScript::wrapTable( in wrapTable()
439 void InjectedScript::addPromiseCallback( in addPromiseCallback()
457 void InjectedScript::discardEvaluateCallbacks() { in discardEvaluateCallbacks()
465 std::unique_ptr<EvaluateCallback> InjectedScript::takeEvaluateCallback( in takeEvaluateCallback()
474 Response InjectedScript::findObject(const RemoteObjectId& objectId, in findObject()
483 String16 InjectedScript::objectGroupName(const RemoteObjectId& objectId) const { in objectGroupName()
489 void InjectedScript::releaseObjectGroup(const String16& objectGroup) { in releaseObjectGroup()
498 void InjectedScript::setCustomObjectFormatterEnabled(bool enabled) { in setCustomObjectFormatterEnabled()
508 v8::Local<v8::Value> InjectedScript::v8Value() const { in v8Value()
512 v8::Local<v8::Value> InjectedScript::lastEvaluationResult() const { in lastEvaluationResult()
518 void InjectedScript::setLastEvaluationResult(v8::Local<v8::Value> result) { in setLastEvaluationResult()
523 Response InjectedScript::resolveCallArgument( in resolveCallArgument()
561 Response InjectedScript::createExceptionDetails( in createExceptionDetails()
608 Response InjectedScript::wrapEvaluateResult( in wrapEvaluateResult()
642 v8::Local<v8::Object> InjectedScript::commandLineAPI() { in commandLineAPI()
653 InjectedScript::Scope::Scope(V8InspectorSessionImpl* session) in Scope()
665 Response InjectedScript::Scope::initialize() { in initialize()
678 void InjectedScript::Scope::installCommandLineAPI() { in installCommandLineAPI()
685 void InjectedScript::Scope::ignoreExceptionsAndMuteConsole() { in ignoreExceptionsAndMuteConsole()
694 v8::debug::ExceptionBreakState InjectedScript::Scope::setPauseOnExceptionsState( in setPauseOnExceptionsState()
704 void InjectedScript::Scope::pretendUserGesture() { in pretendUserGesture()
710 void InjectedScript::Scope::allowCodeGenerationFromStrings() { in allowCodeGenerationFromStrings()
717 void InjectedScript::Scope::cleanup() { in cleanup()
726 InjectedScript::Scope::~Scope() { in ~Scope()
736 InjectedScript::ContextScope::ContextScope(V8InspectorSessionImpl* session, in ContextScope()
738 : InjectedScript::Scope(session), in ContextScope()
741 InjectedScript::ContextScope::~ContextScope() {} in ~ContextScope()
743 Response InjectedScript::ContextScope::findInjectedScript( in findInjectedScript()
748 InjectedScript::ObjectScope::ObjectScope(V8InspectorSessionImpl* session, in ObjectScope()
750 : InjectedScript::Scope(session), m_remoteObjectId(remoteObjectId) {} in ObjectScope()
752 InjectedScript::ObjectScope::~ObjectScope() {} in ~ObjectScope()
754 Response InjectedScript::ObjectScope::findInjectedScript( in findInjectedScript()
759 InjectedScript* injectedScript = nullptr; in findInjectedScript()
769 InjectedScript::CallFrameScope::CallFrameScope(V8InspectorSessionImpl* session, in CallFrameScope()
771 : InjectedScript::Scope(session), m_remoteCallFrameId(remoteObjectId) {} in CallFrameScope()
773 InjectedScript::CallFrameScope::~CallFrameScope() {} in ~CallFrameScope()
775 Response InjectedScript::CallFrameScope::findInjectedScript( in findInjectedScript()
784 InjectedScript* InjectedScript::fromInjectedScriptHost( in fromInjectedScriptHost()
796 return static_cast<InjectedScript*>(external->Value()); in fromInjectedScriptHost()
799 int InjectedScript::bindObject(v8::Local<v8::Value> value, in bindObject()
813 void InjectedScript::unbindObject(int id) { in unbindObject()