| /external/chromium_org/third_party/WebKit/Source/core/imagebitmap/ |
| ImageBitmapFactories.h | 36 #include "bindings/core/v8/ScriptState.h" 61 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLImageElement*, ExceptionState&); 62 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLImageElement*, int sx, int sy, int sw, int sh, ExceptionState&); 63 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLVideoElement*, ExceptionState&); 64 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLVideoElement*, int sx, int sy, int sw, int sh, ExceptionState&); 65 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, CanvasRenderingContext2D*, ExceptionState&); 66 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, CanvasRenderingContext2D*, int sx, int sy, int sw, int sh, ExceptionState&); 67 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLCanvasElement*, ExceptionState&); 68 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLCanvasElement*, int sx, int sy, int sw, int sh, ExceptionState&); 69 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, Blob*, ExceptionState&) [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| InjectedScriptModule.h | 34 #include "bindings/core/v8/ScriptState.h" 52 void ensureInjected(InjectedScriptManager*, ScriptState*);
|
| InjectedScriptManager.h | 33 #include "bindings/core/v8/ScriptState.h" 74 InjectedScript injectedScriptFor(ScriptState*); 76 int injectedScriptIdFor(ScriptState*); 82 typedef bool (*InspectedStateAccessCheck)(ScriptState*); 93 ScriptValue createInjectedScript(const String& source, ScriptState*, int id); 95 static bool canAccessInspectedWindow(ScriptState*); 96 static bool canAccessInspectedWorkerGlobalScope(ScriptState*); 103 typedef HashMap<RefPtr<ScriptState>, int> ScriptStateToId;
|
| ScriptArguments.h | 34 #include "bindings/core/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);
|
| /external/chromium_org/third_party/WebKit/Source/modules/quota/ |
| StorageQuota.idl | 42 [CallWith=ScriptState] Promise queryInfo(StorageType type); 43 [CallWith=ScriptState] Promise requestPersistentQuota([Clamp] unsigned long long newQuota);
|
| StorageQuota.h | 53 ScriptPromise queryInfo(ScriptState*, String type); 54 ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuota);
|
| /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
| IDBObjectStore.idl | 40 [CallWith=ScriptState] readonly attribute any keyPath; 45 [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [Default=Undefined] optional any key); 46 [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [Default=Undefined] optional any key); 47 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key); 48 [CallWith=ScriptState, RaisesException] IDBRequest get(any key); 49 [CallWith=ScriptState, RaisesException] IDBRequest clear(); 50 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = "next"); 51 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next"); 53 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional IDBIndexParameters options); 54 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional IDBIn (…) [all...] |
| IDBObjectStore.h | 65 ScriptValue keyPath(ScriptState*) const; 70 IDBRequest* openCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&); 71 IDBRequest* openKeyCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&); 72 IDBRequest* get(ScriptState*, const ScriptValue& key, ExceptionState&); 73 IDBRequest* add(ScriptState*, const ScriptValue&, const ScriptValue& key, ExceptionState&); 74 IDBRequest* put(ScriptState*, const ScriptValue&, const ScriptValue& key, ExceptionState&); 75 IDBRequest* deleteFunction(ScriptState*, const ScriptValue& key, ExceptionState&); 76 IDBRequest* clear(ScriptState*, ExceptionState&); 78 IDBIndex* createIndex(ScriptState* scriptState, const String& name, const String& keyPath, const IDBIndexParameters& options, ExceptionState& exc (…) [all...] |
| IDBIndex.h | 59 ScriptValue keyPath(ScriptState*) const; 63 IDBRequest* openCursor(ScriptState*, const ScriptValue& key, const String& direction, ExceptionState&); 64 IDBRequest* openKeyCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&); 65 IDBRequest* count(ScriptState*, const ScriptValue& range, ExceptionState&); 66 IDBRequest* get(ScriptState*, const ScriptValue& key, ExceptionState&); 67 IDBRequest* getKey(ScriptState*, const ScriptValue& key, ExceptionState&); 73 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection); 80 IDBRequest* getInternal(ScriptState*, const ScriptValue& key, ExceptionState&, bool keyOnly);
|
| /external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
| SubtleCrypto.idl | 43 [CallWith=ScriptState] Promise encrypt(Dictionary algorithm, CryptoKey key, ArrayBuffer data); 44 [CallWith=ScriptState] Promise encrypt(Dictionary algorithm, CryptoKey key, ArrayBufferView data); 46 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, CryptoKey key, ArrayBuffer data); 47 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, CryptoKey key, ArrayBufferView data); 49 [CallWith=ScriptState] Promise sign(Dictionary algorithm, CryptoKey key, ArrayBuffer data); 50 [CallWith=ScriptState] Promise sign(Dictionary algorithm, CryptoKey key, ArrayBufferView data); 53 [CallWith=ScriptState, Custom, ImplementedAs=verifySignature] Promise verify(Dictionary algorithm, CryptoKey key, object signature, object data); 55 [CallWith=ScriptState] Promise digest(Dictionary algorithm, ArrayBuffer data); 56 [CallWith=ScriptState] Promise digest(Dictionary algorithm, ArrayBufferView data); 58 [CallWith=ScriptState] Promise generateKey(Dictionary algorithm, boolean extractable, DOMString[] keyUsages) [all...] |
| /external/chromium_org/third_party/WebKit/Source/modules/battery/ |
| NavigatorBattery.h | 25 static ScriptPromise getBattery(ScriptState*, Navigator&); 26 ScriptPromise getBattery(ScriptState*);
|
| /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/ |
| PushManager.h | 16 class ScriptState; 26 ScriptPromise registerPushMessaging(ScriptState*, const String& senderId);
|
| /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/ |
| ScreenScreenOrientation.h | 14 class ScriptState; 24 static ScreenOrientation* orientation(ScriptState*, Screen&);
|
| /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
| ExtendableEvent.idl | 36 [CallWith=ScriptState] void waitUntil(any value);
|
| FetchManager.h | 16 class ScriptState; 23 ScriptPromise fetch(ScriptState*, const FetchRequestData*);
|
| InstallEvent.idl | 37 [CallWith=ScriptState] Promise reloadAll();
|
| ServiceWorkerClients.h | 18 class ScriptState; 27 ScriptPromise getAll(ScriptState*, const ServiceWorkerClientQueryParams&);
|
| CacheStorage.h | 9 #include "bindings/core/v8/ScriptState.h" 26 ScriptPromise get(ScriptState*, const String& cacheName); 27 ScriptPromise has(ScriptState*, const String& cacheName); 28 ScriptPromise createFunction(ScriptState*, const String& cacheName); 29 ScriptPromise deleteFunction(ScriptState*, const String& cacheName); 30 ScriptPromise keys(ScriptState*);
|
| /external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
| NavigatorWebMIDI.idl | 34 [CallWith=ScriptState] Promise requestMIDIAccess(optional MIDIOptions options);
|
| /external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
| callback_interface.h | 19 static {{v8_class}}* create(v8::Handle<v8::Function> callback, ScriptState* scriptState) 21 return new {{v8_class}}(callback, scriptState); 30 {{v8_class}}(v8::Handle<v8::Function>, ScriptState*); 33 RefPtr<ScriptState> m_scriptState;
|
| /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/ |
| MediaKeys.h | 41 class ScriptState; 49 static ScriptPromise create(ScriptState*, const String& keySystem); 54 MediaKeySession* createSession(ScriptState*, const String& sessionType);
|
| MediaKeys.idl | 38 [CallWith=ScriptState] MediaKeySession createSession(optional SessionType sessionType = "temporary"); 40 [CallWith=ScriptState] static Promise create(DOMString keySystem);
|
| MediaKeySession.h | 41 class ScriptState; 68 static MediaKeySession* create(ScriptState*, MediaKeys*, const String& sessionType); 73 ScriptPromise closed(ScriptState*); 75 ScriptPromise generateRequest(ScriptState*, const String& initDataType, ArrayBuffer* initData); 76 ScriptPromise generateRequest(ScriptState*, const String& initDataType, ArrayBufferView* initData); 81 ScriptPromise update(ScriptState*, ArrayBuffer* response); 82 ScriptPromise update(ScriptState*, ArrayBufferView* response); 83 ScriptPromise release(ScriptState*); 101 MediaKeySession(ScriptState*, MediaKeys*, const String& sessionType); 112 ScriptPromise generateRequestInternal(ScriptState*, const String& initDataType, PassRefPtr<ArrayBuffer> initData) [all...] |
| /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/ |
| IDBBindingUtilities.h | 29 #include "bindings/core/v8/ScriptState.h" 50 ScriptValue idbAnyToScriptValue(ScriptState*, IDBAny*); 51 ScriptValue idbKeyToScriptValue(ScriptState*, IDBKey*); 54 ScriptValue deserializeScriptValue(ScriptState*, SerializedScriptValue*, const Vector<blink::WebBlobInfo>*); 57 void assertPrimaryKeyValidOrInjectable(ScriptState*, PassRefPtr<SharedBuffer>, const Vector<blink::WebBlobInfo>*, IDBKey*, const IDBKeyPath&);
|
| /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
| ScriptPromise.h | 61 ScriptPromise(ScriptState*, v8::Handle<v8::Value> promise); 114 static ScriptPromise cast(ScriptState*, const ScriptValue& /*value*/); 115 static ScriptPromise cast(ScriptState*, v8::Handle<v8::Value> /*value*/); 117 static ScriptPromise reject(ScriptState*, const ScriptValue&); 118 static ScriptPromise reject(ScriptState*, v8::Handle<v8::Value>); 120 static ScriptPromise rejectWithDOMException(ScriptState*, PassRefPtrWillBeRawPtr<DOMException>); 128 explicit InternalResolver(ScriptState*); 140 RefPtr<ScriptState> m_scriptState;
|