HomeSort by relevance Sort by last modified time
    Searched refs:ScriptState (Results 51 - 75 of 299) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
SimpleContentDecryptionModuleResult.h 16 class ScriptState;
28 explicit SimpleContentDecryptionModuleResult(ScriptState*);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursor.h 61 ScriptValue key(ScriptState*);
62 ScriptValue primaryKey(ScriptState*);
63 ScriptValue value(ScriptState*);
64 ScriptValue source(ScriptState*) const;
66 IDBRequest* update(ScriptState*, const ScriptValue&, ExceptionState&);
68 void continueFunction(ScriptState*, const ScriptValue& key, ExceptionState&);
69 void continuePrimaryKey(ScriptState*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&);
70 IDBRequest* deleteFunction(ScriptState*, ExceptionState&);
IDBDatabase.idl 41 [CallWith=ScriptState] readonly attribute any version;
46 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(DOMString storeName, optional IDBTransactionMode mode = "readonly");
47 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(sequence<DOMString> storeNames, optional IDBTransactionMode mode = "readonly");
48 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(DOMStringList storeNames, optional IDBTransactionMode mode = "readonly");
IDBKeyRange.idl 29 [ImplementedAs=lowerValue, CallWith=ScriptState] readonly attribute any lower;
30 [ImplementedAs=upperValue, CallWith=ScriptState] readonly attribute any upper;
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuotaClient.h 44 class ScriptState;
55 virtual ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) = 0;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RespondWithObserver.h 18 class ScriptState;
33 void respondWith(ScriptState*, const ScriptValue&, ExceptionState&);
WaitUntilObserver.h 16 class ScriptState;
35 void waitUntil(ScriptState*, const ScriptValue&);
ServiceWorkerGlobalScope.h 46 class ScriptState;
66 ScriptPromise fetch(ScriptState*, Request*);
67 ScriptPromise fetch(ScriptState*, Request*, const Dictionary&);
68 ScriptPromise fetch(ScriptState*, const String&);
69 ScriptPromise fetch(ScriptState*, const String&, const Dictionary&);
ServiceWorkerContainer.h 69 ScriptPromise ready(ScriptState*);
72 ScriptPromise registerServiceWorker(ScriptState*, const String& pattern, const RegistrationOptionList&);
73 ScriptPromise getRegistration(ScriptState*, const String& documentURL);
Cache.cpp 9 #include "bindings/core/v8/ScriptState.h"
42 m_resolver->resolve(Response::create(m_resolver->scriptState()->executionContext(), *webResponse));
67 responses.append(Response::create(m_resolver->scriptState()->executionContext(), (*webResponses)[i]));
93 requests.append(Request::create(m_resolver->scriptState()->executionContext(), (*webRequests)[i]));
108 ScriptPromise rejectForCacheError(ScriptState* scriptState, WebServiceWorkerCacheError error)
110 return ScriptPromise::rejectWithDOMException(scriptState, Cache::domExceptionForCacheError(error));
113 ScriptPromise rejectAsNotImplemented(ScriptState* scriptState)
115 return ScriptPromise::rejectWithDOMException(scriptState, DOMException::create(NotSupportedError, "Cache is not implemented"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
NavigatorWebMIDI.h 50 static ScriptPromise requestMIDIAccess(ScriptState*, Navigator&, const MIDIOptions&);
51 ScriptPromise requestMIDIAccess(ScriptState*, const MIDIOptions&);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8MutationCallback.h 31 #include "bindings/core/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/core/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;
ScriptPromiseResolver.h 10 #include "bindings/core/v8/ScriptState.h"
22 // - A ScriptPromiseResolver retains a ScriptState. A caller
32 static PassRefPtr<ScriptPromiseResolver> create(ScriptState* scriptState)
34 RefPtr<ScriptPromiseResolver> resolver = adoptRef(new ScriptPromiseResolver(scriptState));
65 ScriptState* scriptState() { return m_scriptState.get(); }
77 ScriptState* scriptState() const { return m_scriptState.get(); }
91 explicit ScriptPromiseResolver(ScriptState*);
    [all...]
ScriptFunctionCall.h 44 ScriptCallArgumentHandler(ScriptState* scriptState) : m_scriptState(scriptState) { }
59 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*);
V8WorkerGlobalScopeEventListener.h 44 static PassRefPtr<V8WorkerGlobalScopeEventListener> create(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
46 return adoptRef(new V8WorkerGlobalScopeEventListener(listener, isInline, scriptState));
52 V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline, ScriptState*);
ScriptPromiseResolverTest.cpp 27 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value)
29 Function* self = new Function(scriptState, value);
34 Function(ScriptState* scriptState, String* value)
35 : ScriptFunction(scriptState)
59 ScriptState::Scope scope(scriptState());
69 ScriptState* scriptState() const { return ScriptState::forMainWorld(&m_pageHolder->frame());
    [all...]
ScriptPromisePropertyTest.cpp 11 #include "bindings/core/v8/ScriptState.h"
34 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState)
36 NotReached* self = new NotReached(scriptState);
41 explicit NotReached(ScriptState* scriptState)
42 : ScriptFunction(scriptState)
57 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, ScriptValue& value, size_t& callCount)
59 StubFunction* self = new StubFunction(scriptState, value, callCount)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestCallbackInterface.h 19 static V8TestCallbackInterface* create(v8::Handle<v8::Function> callback, ScriptState* scriptState)
21 return new V8TestCallbackInterface(callback, scriptState);
38 V8TestCallbackInterface(v8::Handle<v8::Function>, ScriptState*);
41 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PromiseTracker.h 18 class ScriptState;
35 void didReceiveV8PromiseEvent(ScriptState*, v8::Handle<v8::Object> promise, v8::Handle<v8::Value> parentPromise, int status);
53 PassRefPtrWillBeRawPtr<PromiseData> createPromiseDataIfNeeded(ScriptState*, v8::Handle<v8::Object> promise);
PageRuntimeAgent.cpp 36 #include "bindings/core/v8/ScriptState.h"
109 addExecutionContextToFrontend(ScriptState::forMainWorld(frame), true, "", frameId);
112 void PageRuntimeAgent::didCreateIsolatedContext(LocalFrame* frame, ScriptState* scriptState, SecurityOrigin* origin)
118 addExecutionContextToFrontend(scriptState, false, origin->toRawString(), frameId);
124 ScriptState* scriptState = ScriptState::forMainWorld(m_inspectedPage->deprecatedLocalMainFrame());
125 InjectedScript result = injectedScriptManager()->injectedScriptFor(scriptState);
148 Vector<std::pair<ScriptState*, SecurityOrigin*> > isolatedContexts
    [all...]
  /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/modules/crypto/
CryptoResultImpl.h 60 static PassRefPtr<CryptoResultImpl> create(ScriptState*);
76 explicit CryptoResultImpl(ScriptState*);
  /external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStream.h 10 #include "bindings/core/v8/ScriptState.h"
50 virtual ScriptValue read(ScriptState*, ExceptionState&) = 0;
51 ScriptPromise wait(ScriptState*);
52 ScriptPromise cancel(ScriptState*, ScriptValue reason);
53 ScriptPromise closed(ScriptState*);

Completed in 1109 milliseconds

1 23 4 5 6 7 8 91011>>