• Home
  • Raw
  • Download

Lines Matching refs:InjectedScript

71 class InjectedScript::ProtocolPromiseHandler {
182 InjectedScript::ContextScope scope(session, m_executionContextId); in thenCallback()
227 InjectedScript::ContextScope scope(session, m_executionContextId); in catchCallback()
320 InjectedScript::ContextScope scope(session, m_executionContextId); in sendPromiseCollected()
341 InjectedScript::InjectedScript(InspectedContext* context, int sessionId) in InjectedScript() function in v8_inspector::InjectedScript
344 InjectedScript::~InjectedScript() { discardEvaluateCallbacks(); } in ~InjectedScript()
361 Response InjectedScript::getProperties( in getProperties()
443 Response InjectedScript::getInternalAndPrivateProperties( in getInternalAndPrivateProperties()
531 void InjectedScript::releaseObject(const String16& objectId) { in releaseObject()
537 Response InjectedScript::wrapObject( in wrapObject()
544 Response InjectedScript::wrapObject( in wrapObject()
556 Response InjectedScript::wrapObjectMirror( in wrapObjectMirror()
588 std::unique_ptr<protocol::Runtime::RemoteObject> InjectedScript::wrapTable( in wrapTable()
651 void InjectedScript::addPromiseCallback( in addPromiseCallback()
669 void InjectedScript::discardEvaluateCallbacks() { in discardEvaluateCallbacks()
678 std::unique_ptr<EvaluateCallback> InjectedScript::takeEvaluateCallback( in takeEvaluateCallback()
687 Response InjectedScript::findObject(const RemoteObjectId& objectId, in findObject()
696 String16 InjectedScript::objectGroupName(const RemoteObjectId& objectId) const { in objectGroupName()
702 void InjectedScript::releaseObjectGroup(const String16& objectGroup) { in releaseObjectGroup()
711 void InjectedScript::setCustomObjectFormatterEnabled(bool enabled) { in setCustomObjectFormatterEnabled()
715 v8::Local<v8::Value> InjectedScript::lastEvaluationResult() const { in lastEvaluationResult()
721 void InjectedScript::setLastEvaluationResult(v8::Local<v8::Value> result) { in setLastEvaluationResult()
726 Response InjectedScript::resolveCallArgument( in resolveCallArgument()
774 Response InjectedScript::addExceptionToDetails( in addExceptionToDetails()
790 Response InjectedScript::createExceptionDetails( in createExceptionDetails()
799 Response InjectedScript::createExceptionDetails( in createExceptionDetails()
841 Response InjectedScript::wrapEvaluateResult( in wrapEvaluateResult()
877 v8::Local<v8::Object> InjectedScript::commandLineAPI() { in commandLineAPI()
889 InjectedScript::Scope::Scope(V8InspectorSessionImpl* session) in Scope()
901 Response InjectedScript::Scope::initialize() { in initialize()
914 void InjectedScript::Scope::installCommandLineAPI() { in installCommandLineAPI()
921 void InjectedScript::Scope::ignoreExceptionsAndMuteConsole() { in ignoreExceptionsAndMuteConsole()
930 v8::debug::ExceptionBreakState InjectedScript::Scope::setPauseOnExceptionsState( in setPauseOnExceptionsState()
940 void InjectedScript::Scope::pretendUserGesture() { in pretendUserGesture()
946 void InjectedScript::Scope::allowCodeGenerationFromStrings() { in allowCodeGenerationFromStrings()
953 void InjectedScript::Scope::cleanup() { in cleanup()
962 InjectedScript::Scope::~Scope() { in ~Scope()
972 InjectedScript::ContextScope::ContextScope(V8InspectorSessionImpl* session, in ContextScope()
974 : InjectedScript::Scope(session), in ContextScope()
977 InjectedScript::ContextScope::~ContextScope() = default;
979 Response InjectedScript::ContextScope::findInjectedScript( in findInjectedScript()
984 InjectedScript::ObjectScope::ObjectScope(V8InspectorSessionImpl* session, in ObjectScope()
986 : InjectedScript::Scope(session), m_remoteObjectId(remoteObjectId) {} in ObjectScope()
988 InjectedScript::ObjectScope::~ObjectScope() = default;
990 Response InjectedScript::ObjectScope::findInjectedScript( in findInjectedScript()
995 InjectedScript* injectedScript = nullptr; in findInjectedScript()
1005 InjectedScript::CallFrameScope::CallFrameScope(V8InspectorSessionImpl* session, in CallFrameScope()
1007 : InjectedScript::Scope(session), m_remoteCallFrameId(remoteObjectId) {} in CallFrameScope()
1009 InjectedScript::CallFrameScope::~CallFrameScope() = default;
1011 Response InjectedScript::CallFrameScope::findInjectedScript( in findInjectedScript()
1020 String16 InjectedScript::bindObject(v8::Local<v8::Value> value, in bindObject()
1035 Response InjectedScript::bindRemoteObjectIfNeeded( in bindRemoteObjectIfNeeded()
1047 InjectedScript* injectedScript = in bindRemoteObjectIfNeeded()
1058 void InjectedScript::unbindObject(int id) { in unbindObject()