| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| ExecutionContext.h | 53 class ScriptState;
|
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| InjectedScript.h | 107 friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*);
|
| InjectedScriptHost.cpp | 94 ScriptValue InjectedScriptHost::InspectableObject::get(ScriptState*)
|
| InspectorCanvasAgent.h | 35 #include "bindings/core/v8/ScriptState.h" 92 InjectedScriptCanvasModule injectedScriptCanvasModule(ErrorString*, ScriptState*);
|
| InspectorConsoleAgent.cpp | 174 void InspectorConsoleAgent::consoleTimeline(ExecutionContext* context, const String& title, ScriptState* scriptState) 178 m_timelineAgent->consoleTimeline(context, title, scriptState); 181 void InspectorConsoleAgent::consoleTimelineEnd(ExecutionContext* context, const String& title, ScriptState* scriptState) 184 m_timelineAgent->consoleTimelineEnd(context, title, scriptState); 289 ScriptState* scriptState = consoleMessage->scriptState(); 290 if (scriptState) [all...] |
| InspectorInspectorAgent.cpp | 87 int injectedScriptId = m_injectedScriptManager->injectedScriptIdFor(ScriptState::forMainWorld(frame));
|
| InspectorDebuggerAgent.h | 33 #include "bindings/core/v8/ScriptState.h" 221 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints) OVERRIDE FINAL; 241 virtual void didReceiveV8PromiseEvent(ScriptState*, v8::Handle<v8::Object> promise, v8::Handle<v8::Value> parentPromise, int status) OVERRIDE FINAL; 263 RefPtr<ScriptState> m_pausedScriptState;
|
| /external/chromium_org/third_party/WebKit/Source/modules/battery/ |
| BatteryManager.cpp | 36 ScriptPromise BatteryManager::startRequest(ScriptState* scriptState) 41 m_resolver = ScriptPromiseResolver::create(scriptState);
|
| /external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
| HTMLScriptRunner.cpp | 263 ScriptStreamer::startStreaming(m_parserBlockingScript, m_document->frame()->settings(), ScriptState::forMainWorld(m_document->frame()), PendingScript::ParsingBlocking); 276 ScriptStreamer::startStreaming(pendingScript, m_document->frame()->settings(), ScriptState::forMainWorld(m_document->frame()), PendingScript::Deferred);
|
| /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/ |
| TestObject.idl | 167 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute; 168 [CallWith=(ExecutionContext,ScriptState)] attribute any callWithExecutionContextAndScriptStateAnyAttribute; 465 [CallWith=ScriptState] void callWithScriptStateVoidMethod(); 466 [CallWith=ScriptState] long callWithScriptStateLongMethod(); 467 [CallWith=(ScriptState,ExecutionContext)] void callWithScriptStateExecutionContextVoidMethod(); 468 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgumentsVoidMethod(); 469 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArg(optional boolean optionalBooleanArg); [all...] |
| /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/ |
| IDBBindingUtilities.cpp | 403 ScriptValue idbAnyToScriptValue(ScriptState* scriptState, IDBAny* any) 405 v8::Isolate* isolate = scriptState->isolate(); 407 v8::Handle<v8::Value> v8Value(toV8(any, scriptState->context()->Global(), isolate)); 408 return ScriptValue(scriptState, v8Value); 411 ScriptValue idbKeyToScriptValue(ScriptState* scriptState, IDBKey* key) 413 v8::Isolate* isolate = scriptState->isolate(); 415 v8::Handle<v8::Value> v8Value(toV8(key, scriptState->context()->Global(), isolate)); 416 return ScriptValue(scriptState, v8Value) [all...] |
| /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/ |
| HTMLMediaElementEncryptedMedia.cpp | 11 #include "bindings/core/v8/ScriptState.h" 53 static ScriptPromise create(ScriptState*, HTMLMediaElement&, MediaKeys*); 57 SetMediaKeysHandler(ScriptState*, HTMLMediaElement&, MediaKeys*); 107 ScriptPromise SetMediaKeysHandler::create(ScriptState* scriptState, HTMLMediaElement& element, MediaKeys* mediaKeys) 109 RefPtr<SetMediaKeysHandler> handler = adoptRef(new SetMediaKeysHandler(scriptState, element, mediaKeys)); 115 SetMediaKeysHandler::SetMediaKeysHandler(ScriptState* scriptState, HTMLMediaElement& element, MediaKeys* mediaKeys) 116 : ScriptPromiseResolver(scriptState) 272 ScriptPromise HTMLMediaElementEncryptedMedia::setMediaKeys(ScriptState* scriptState, HTMLMediaElement& element, MediaKeys* mediaKeys [all...] |
| /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/ |
| V8TestObject.cpp | 16 #include "bindings/core/v8/ScriptState.h" [all...] |
| /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
| V8InjectedScriptHostCustom.cpp | 67 Node* InjectedScriptHost::scriptValueAsNode(ScriptState* scriptState, ScriptValue value) 69 ScriptState::Scope scope(scriptState); 75 ScriptValue InjectedScriptHost::nodeAsScriptValue(ScriptState* scriptState, Node* node) 77 ScriptState::Scope scope(scriptState); 78 v8::Isolate* isolate = scriptState->isolate(); 79 ExceptionState exceptionState(ExceptionState::ExecutionContext, "nodeAsScriptValue", "InjectedScriptHost", scriptState->context()->Global(), isolate) [all...] |
| /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
| V8GCController.cpp | 453 RefPtr<ScriptState> scriptState = ScriptState::create(v8::Context::New(isolate), DOMWrapperWorld::create()); 454 ScriptState::Scope scope(scriptState.get()); 456 scriptState->disposePerContextData();
|
| DOMWrapperWorld.h | 34 #include "bindings/core/v8/ScriptState.h" 76 return ScriptState::from(context)->world();
|
| ExceptionState.cpp | 46 ScriptPromise ExceptionState::reject(ScriptState* scriptState) 48 ScriptPromise promise = ScriptPromise::reject(scriptState, m_exception.newLocal(scriptState->isolate()));
|
| ScriptCallStackFactory.cpp | 127 PassRefPtrWillBeRawPtr<ScriptArguments> createScriptArguments(ScriptState* scriptState, const v8::FunctionCallbackInfo<v8::Value>& v8arguments, unsigned skipArgumentCount) 131 arguments.append(ScriptValue(scriptState, v8arguments[i])); 133 return ScriptArguments::create(scriptState, arguments);
|
| V8PerIsolateData.h | 30 #include "bindings/core/v8/ScriptState.h" 125 RefPtr<ScriptState> m_scriptRegexpScriptState;
|
| /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
| IDBDatabase.cpp | 189 ScriptValue IDBDatabase::version(ScriptState* scriptState) const 193 return idbAnyToScriptValue(scriptState, IDBAny::createString(m_metadata.version)); 195 return idbAnyToScriptValue(scriptState, IDBAny::create(intVersion)); 298 IDBTransaction* IDBDatabase::transaction(ScriptState* scriptState, const Vector<String>& scope, const String& modeString, ExceptionState& exceptionState) 339 return IDBTransaction::create(scriptState, transactionId, scope, mode, this); 342 IDBTransaction* IDBDatabase::transaction(ScriptState* scriptState, const String& storeName, const String& mode, ExceptionState& exceptionState) 346 return transaction(scriptState, storeNames, mode, exceptionState) [all...] |
| IDBRequest.cpp | 50 IDBRequest* IDBRequest::create(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction) 52 IDBRequest* request = adoptRefCountedGarbageCollectedWillBeNoop(new IDBRequest(scriptState, source, transaction)); 60 IDBRequest::IDBRequest(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction) 61 : ActiveDOMObject(scriptState->executionContext()) 66 , m_scriptState(scriptState) 218 V8PerIsolateData::from(scriptState()->isolate())->ensureIDBPendingTransactionMonitor()->registerRequest(*this); 226 V8PerIsolateData::from(scriptState()->isolate())->ensureIDBPendingTransactionMonitor()->unregisterRequest(*this); 441 ScriptState::Scope scope(m_scriptState.get()) [all...] |
| IDBRequestTest.cpp | 29 #include "bindings/core/v8/ScriptState.h" 58 m_scope.scriptState()->setExecutionContext(m_executionContext.get()); 63 m_scope.scriptState()->setExecutionContext(0); 67 ScriptState* scriptState() const { return m_scope.scriptState(); } 68 ExecutionContext* executionContext() const { return m_scope.scriptState()->executionContext(); } 78 IDBRequest* request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction); 97 IDBRequest* request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction); 144 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scriptState(), callbacks, transactionId, version) [all...] |
| IDBTransactionTest.cpp | 52 m_scope.scriptState()->setExecutionContext(m_executionContext.get()); 57 m_scope.scriptState()->setExecutionContext(0); 61 ScriptState* scriptState() const { return m_scope.scriptState(); } 62 ExecutionContext* executionContext() { return m_scope.scriptState()->executionContext(); } 104 Persistent<IDBTransaction> transaction = IDBTransaction::create(scriptState(), transactionId, transactionScope, WebIDBTransactionModeReadOnly, db.get()); 111 Persistent<IDBRequest> request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction.get()); 134 Persistent<IDBTransaction> transaction = IDBTransaction::create(scriptState(), transactionId, transactionScope, WebIDBTransactionModeReadOnly, db.get());
|
| /external/chromium_org/third_party/WebKit/Source/core/frame/csp/ |
| ContentSecurityPolicy.h | 29 #include "bindings/core/v8/ScriptState.h" 113 bool allowEval(ScriptState* = 0, ReportingStatus = SendReport) const;
|
| /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/ |
| ScreenOrientation.cpp | 147 ScriptPromise ScreenOrientation::lock(ScriptState* state, const AtomicString& lockString)
|