| /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
| InstallEvent.idl | 37 [CallWith=ScriptState] Promise reloadAll();
|
| InstallPhaseEvent.idl | 36 [CallWith=ScriptState] void waitUntil(any value);
|
| RespondWithObserver.h | 16 class ScriptState; 32 void respondWith(ScriptState*, const ScriptValue&);
|
| WaitUntilObserver.h | 16 class ScriptState; 39 void waitUntil(ScriptState*, const ScriptValue&);
|
| ServiceWorkerContainer.idl | 40 [CallWith=ScriptState] readonly attribute Promise ready; 42 [CallWith=ScriptState, ImplementedAs=registerServiceWorker] Promise register(ScalarValueString url, optional Dictionary options); 43 [CallWith=ScriptState, ImplementedAs=unregisterServiceWorker] Promise unregister(ScalarValueString scope);
|
| ServiceWorkerGlobalScope.h | 42 class ScriptState; 58 ScriptPromise fetch(ScriptState*, Request*); 59 ScriptPromise fetch(ScriptState*, const String&);
|
| /external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
| NavigatorWebMIDI.idl | 34 [CallWith=ScriptState] Promise requestMIDIAccess(optional Dictionary options);
|
| NavigatorWebMIDI.h | 50 static ScriptPromise requestMIDIAccess(ScriptState*, Navigator&, const Dictionary&); 51 ScriptPromise requestMIDIAccess(ScriptState*, const Dictionary&);
|
| /external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
| ScriptPromise.h | 57 ScriptPromise(ScriptState*, v8::Handle<v8::Value> promise); 100 static ScriptPromise cast(ScriptState*, const ScriptValue& /*value*/); 101 static ScriptPromise cast(ScriptState*, v8::Handle<v8::Value> /*value*/); 103 static ScriptPromise reject(ScriptState*, const ScriptValue&); 104 static ScriptPromise reject(ScriptState*, v8::Handle<v8::Value>); 106 static ScriptPromise rejectWithDOMException(ScriptState*, PassRefPtrWillBeRawPtr<DOMException>); 109 RefPtr<ScriptState> m_scriptState;
|
| IDBBindingUtilities.h | 29 #include "bindings/v8/ScriptState.h" 55 ScriptValue idbAnyToScriptValue(ScriptState*, IDBAny*); 56 ScriptValue idbKeyToScriptValue(ScriptState*, IDBKey*); 61 void assertPrimaryKeyValidOrInjectable(ScriptState*, PassRefPtr<SharedBuffer>, const Vector<blink::WebBlobInfo>*, IDBKey*, const IDBKeyPath&);
|
| ScriptCallStackFactory.h | 42 class ScriptState; 53 PassRefPtrWillBeRawPtr<ScriptCallStack> createScriptCallStackForConsole(ScriptState*, size_t maxStackSize = ScriptCallStack::maxCallStackSizeToCapture); 54 PassRefPtrWillBeRawPtr<ScriptArguments> createScriptArguments(ScriptState*, const v8::FunctionCallbackInfo<v8::Value>& v8arguments, unsigned skipArgumentCount);
|
| ScriptValue.cpp | 34 #include "bindings/v8/ScriptState.h" 66 ScriptState::Scope scope(m_scriptState.get()); 74 PassRefPtr<JSONValue> ScriptValue::toJSONValue(ScriptState* scriptState) const 76 ASSERT(!scriptState->contextIsEmpty()); 77 ScriptState::Scope scope(scriptState); 78 return v8ToJSONValue(scriptState->isolate(), v8Value(), JSONValue::maxDepth);
|
| V8MutationCallback.h | 31 #include "bindings/v8/ScriptState.h" 43 static PassOwnPtr<V8MutationCallback> create(v8::Handle<v8::Function> callback, v8::Handle<v8::Object> owner, ScriptState* scriptState) 45 return adoptPtr(new V8MutationCallback(callback, owner, scriptState)); 52 V8MutationCallback(v8::Handle<v8::Function>, v8::Handle<v8::Object>, ScriptState*); 57 RefPtr<ScriptState> m_scriptState;
|
| V8NodeFilterCondition.h | 35 #include "bindings/v8/ScriptState.h" 65 static PassRefPtrWillBeRawPtr<V8NodeFilterCondition> create(v8::Handle<v8::Value> filter, v8::Handle<v8::Object> owner, ScriptState* scriptState) 67 return adoptRefWillBeNoop(new V8NodeFilterCondition(filter, owner, scriptState)); 78 V8NodeFilterCondition(v8::Handle<v8::Value> filter, v8::Handle<v8::Object> owner, ScriptState*); 82 RefPtr<ScriptState> m_scriptState;
|
| ScriptPromiseResolverWithContext.h | 11 #include "bindings/v8/ScriptState.h" 24 // - A ScriptPromiseResolverWithContext retains a ScriptState. A caller 34 static PassRefPtr<ScriptPromiseResolverWithContext> create(ScriptState* scriptState) 36 RefPtr<ScriptPromiseResolverWithContext> resolver = adoptRef(new ScriptPromiseResolverWithContext(scriptState)); 64 ScriptState* scriptState() { return m_scriptState.get(); } 76 ScriptState* scriptState() const { return m_scriptState.get(); } 90 explicit ScriptPromiseResolverWithContext(ScriptState*); [all...] |
| ScriptFunctionCall.h | 44 ScriptCallArgumentHandler(ScriptState* scriptState) : m_scriptState(scriptState) { } 58 RefPtr<ScriptState> m_scriptState;
|
| V8EventListener.h | 47 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState) 49 return adoptRef(new V8EventListener(listener, isAttribute, scriptState)); 53 V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, ScriptState*);
|
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| InjectedScriptManager.h | 33 #include "bindings/v8/ScriptState.h" 57 InjectedScript injectedScriptFor(ScriptState*); 59 int injectedScriptIdFor(ScriptState*); 65 typedef bool (*InspectedStateAccessCheck)(ScriptState*); 74 ScriptValue createInjectedScript(const String& source, ScriptState*, int id); 76 static bool canAccessInspectedWindow(ScriptState*); 77 static bool canAccessInspectedWorkerGlobalScope(ScriptState*); 84 typedef HashMap<RefPtr<ScriptState>, int> ScriptStateToId;
|
| ScriptArguments.h | 34 #include "bindings/v8/ScriptState.h" 47 static PassRefPtrWillBeRawPtr<ScriptArguments> create(ScriptState*, Vector<ScriptValue>& arguments); 52 ScriptState* scriptState() const { return m_scriptState.get(); } 59 ScriptArguments(ScriptState*, Vector<ScriptValue>& arguments);
|
| PageRuntimeAgent.cpp | 36 #include "bindings/v8/ScriptState.h" 93 addExecutionContextToFrontend(ScriptState::forMainWorld(frame), true, "", frameId); 96 void PageRuntimeAgent::didCreateIsolatedContext(LocalFrame* frame, ScriptState* scriptState, SecurityOrigin* origin) 102 addExecutionContextToFrontend(scriptState, false, origin->toRawString(), frameId); 108 ScriptState* scriptState = ScriptState::forMainWorld(m_inspectedPage->deprecatedLocalMainFrame()); 109 InjectedScript result = injectedScriptManager()->injectedScriptFor(scriptState); 132 Vector<std::pair<ScriptState*, SecurityOrigin*> > isolatedContexts [all...] |
| ScriptArguments.cpp | 42 PassRefPtrWillBeRawPtr<ScriptArguments> ScriptArguments::create(ScriptState* scriptState, Vector<ScriptValue>& arguments) 44 return adoptRefWillBeNoop(new ScriptArguments(scriptState, arguments)); 47 ScriptArguments::ScriptArguments(ScriptState* scriptState, Vector<ScriptValue>& arguments) 48 : m_scriptState(scriptState) 65 ScriptState::Scope scope(m_scriptState.get());
|
| /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
| IDBObjectStore.h | 64 ScriptValue keyPath(ScriptState*) const; 69 IDBRequest* openCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&); 70 IDBRequest* openKeyCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&); 71 IDBRequest* get(ScriptState*, const ScriptValue& key, ExceptionState&); 72 IDBRequest* add(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&); 73 IDBRequest* put(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&); 74 IDBRequest* deleteFunction(ScriptState*, const ScriptValue& key, ExceptionState&); 75 IDBRequest* clear(ScriptState*, ExceptionState&); 77 IDBIndex* createIndex(ScriptState* scriptState, const String& name, const String& keyPath, const Dictionary& options, ExceptionState& exceptionSt (…) [all...] |
| /external/chromium_org/third_party/WebKit/Source/modules/quota/ |
| StorageQuotaClient.h | 42 class ScriptState; 53 virtual ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) = 0;
|
| /external/chromium_org/third_party/WebKit/Source/core/frame/ |
| ConsoleBase.cpp | 46 void ConsoleBase::debug(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) 48 internalAddMessage(LogMessageType, DebugMessageLevel, scriptState, arguments); 51 void ConsoleBase::error(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) 53 internalAddMessage(LogMessageType, ErrorMessageLevel, scriptState, arguments); 56 void ConsoleBase::info(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments) 58 internalAddMessage(LogMessageType, InfoMessageLevel, scriptState, arguments); 61 void ConsoleBase::log(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ScriptArguments> arguments [all...] |
| /external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
| callback_interface.h | 19 static PassOwnPtr<{{v8_class}}> create(v8::Handle<v8::Function> callback, ScriptState* scriptState) 21 return adoptPtr(new {{v8_class}}(callback, scriptState)); 30 {{v8_class}}(v8::Handle<v8::Function>, ScriptState*); 33 RefPtr<ScriptState> m_scriptState;
|