OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExecutionContext
(Results
176 - 200
of
494
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentationCustomInl.h
43
bool canvasAgentEnabled(
ExecutionContext
*);
44
bool consoleAgentEnabled(
ExecutionContext
*);
45
bool timelineAgentEnabled(
ExecutionContext
*);
InspectorInstrumentation.idl
134
void willSendXMLHttpRequest(
ExecutionContext
*, const String& url);
149
void didInstallTimer([Keep]
ExecutionContext
*, int timerId, int timeout, bool singleShot);
152
void didRemoveTimer([Keep]
ExecutionContext
*, int timerId);
155
InspectorInstrumentationCookie willCallFunction([Keep]
ExecutionContext
*, const String& scriptName, int scriptLine);
161
InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep]
ExecutionContext
*, XMLHttpRequest*);
173
InspectorInstrumentationCookie willHandleEvent(
ExecutionContext
*, Event*);
197
InspectorInstrumentationCookie willFireTimer([Keep]
ExecutionContext
*, int timerId);
224
InspectorInstrumentationCookie willDispatchXHRLoadEvent([Keep]
ExecutionContext
*, XMLHttpRequest*);
307
void documentThreadableLoaderStartedLoadingForClient(
ExecutionContext
*, unsigned long identifier, ThreadableLoaderClient* client);
310
void willLoadXHR(
ExecutionContext
*, XMLHttpRequest* xhr, ThreadableLoaderClient* client, const AtomicString& method, const KURL& url (…)
[
all
...]
InspectorTimelineAgent.h
82
class
ExecutionContext
;
158
bool willCallFunction(
ExecutionContext
*, const String& scriptName, int scriptLine);
196
void didInstallTimer(
ExecutionContext
*, int timerId, int timeout, bool singleShot);
197
void didRemoveTimer(
ExecutionContext
*, int timerId);
198
bool willFireTimer(
ExecutionContext
*, int timerId);
201
bool willDispatchXHRReadyStateChangeEvent(
ExecutionContext
*, XMLHttpRequest*);
203
bool willDispatchXHRLoadEvent(
ExecutionContext
*, XMLHttpRequest*);
209
void consoleTimeStamp(
ExecutionContext
*, const String& title);
213
void consoleTime(
ExecutionContext
*, const String&);
214
void consoleTimeEnd(
ExecutionContext
*, const String&, ScriptState*)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.h
57
static PassRefPtr<EventSource> create(
ExecutionContext
*, const String& url, const Dictionary&, ExceptionState&);
79
virtual
ExecutionContext
*
executionContext
() const OVERRIDE;
90
EventSource(
ExecutionContext
*, const KURL&, const Dictionary&);
/external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerMessagingProxy.h
30
#include "core/dom/
ExecutionContext
.h"
44
class
ExecutionContext
;
87
static void workerObjectDestroyedInternal(
ExecutionContext
*, WorkerMessagingProxy*);
89
RefPtr<
ExecutionContext
> m_executionContext;
WorkerScriptLoader.h
44
class
ExecutionContext
;
56
void loadSynchronously(
ExecutionContext
*, const KURL&, CrossOriginRequestPolicy);
57
void loadAsynchronously(
ExecutionContext
*, const KURL&, CrossOriginRequestPolicy, WorkerScriptLoaderClient*);
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.h
58
static PassRefPtr<MediaKeySession> create(
ExecutionContext
*, ContentDecryptionModule*, MediaKeys*);
78
virtual
ExecutionContext
*
executionContext
() const OVERRIDE;
81
MediaKeySession(
ExecutionContext
*, ContentDecryptionModule*, MediaKeys*);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDTMFSender.h
46
static PassRefPtr<RTCDTMFSender> create(
ExecutionContext
*, RTCPeerConnectionHandler*, PassRefPtr<MediaStreamTrack>, ExceptionState&);
63
virtual
ExecutionContext
*
executionContext
() const OVERRIDE;
69
RTCDTMFSender(
ExecutionContext
*, PassRefPtr<MediaStreamTrack>, PassOwnPtr<RTCDTMFSenderHandler>);
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationBase.h
43
class
ExecutionContext
;
85
virtual
ExecutionContext
*
executionContext
() const OVERRIDE { return ActiveDOMObject::
executionContext
(); }
93
NotificationBase(const String& title,
ExecutionContext
*, NotificationClient*);
/external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.h
50
static PassRefPtr<SpeechSynthesis> create(
ExecutionContext
*);
68
virtual
ExecutionContext
*
executionContext
() const;
71
explicit SpeechSynthesis(
ExecutionContext
*);
SpeechSynthesisUtterance.h
42
static PassRefPtr<SpeechSynthesisUtterance> create(
ExecutionContext
*, const String&);
75
virtual
ExecutionContext
*
executionContext
() const;
80
SpeechSynthesisUtterance(
ExecutionContext
*, const String&);
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.h
44
class
ExecutionContext
;
55
WebSocketHandshake(const KURL&, const String& protocol,
ExecutionContext
*);
110
ExecutionContext
* m_context;
WebSocket.h
61
static PassRefPtr<WebSocket> create(
ExecutionContext
*, const String& url, ExceptionState&);
62
static PassRefPtr<WebSocket> create(
ExecutionContext
*, const String& url, const String& protocol, ExceptionState&);
63
static PassRefPtr<WebSocket> create(
ExecutionContext
*, const String& url, const Vector<String>& protocols, ExceptionState&);
108
virtual
ExecutionContext
*
executionContext
() const OVERRIDE;
163
explicit WebSocket(
ExecutionContext
*);
ThreadableWebSocketChannelClientWrapper.cpp
41
ThreadableWebSocketChannelClientWrapper::ThreadableWebSocketChannelClientWrapper(
ExecutionContext
* context, WebSocketChannelClient* client)
53
PassRefPtr<ThreadableWebSocketChannelClientWrapper> ThreadableWebSocketChannelClientWrapper::create(
ExecutionContext
* context, WebSocketChannelClient* client)
212
void ThreadableWebSocketChannelClientWrapper::processPendingTasksCallback(
ExecutionContext
* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> wrapper)
234
void ThreadableWebSocketChannelClientWrapper::didConnectCallback(
ExecutionContext
* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> wrapper)
241
void ThreadableWebSocketChannelClientWrapper::didReceiveMessageCallback(
ExecutionContext
* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> wrapper, const String& message)
248
void ThreadableWebSocketChannelClientWrapper::didReceiveBinaryDataCallback(
ExecutionContext
* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> wrapper, PassOwnPtr<Vector<char> > binaryData)
255
void ThreadableWebSocketChannelClientWrapper::didUpdateBufferedAmountCallback(
ExecutionContext
* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> wrapper, unsigned long bufferedAmount)
262
void ThreadableWebSocketChannelClientWrapper::didStartClosingHandshakeCallback(
ExecutionContext
* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> wrapper)
269
void ThreadableWebSocketChannelClientWrapper::didCloseCallback(
ExecutionContext
* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> wrapper, unsigned long unhandledBufferedAmount, WebSocketChannelClient::ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
276
void ThreadableWebSocketChannelClientWrapper::didReceiveMessageErrorCallback(
ExecutionContext
* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> wrapper
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
DOMSecurityPolicy.cpp
30
#include "core/dom/
ExecutionContext
.h"
38
bool isPolicyActiveInContext(
ExecutionContext
* context)
40
// If the
ExecutionContext
has been destroyed, there's no active policy.
48
bool isAllowedWithType(
ExecutionContext
* context, const String& type)
57
bool isAllowedWithURL(
ExecutionContext
* context, const String& url)
70
bool isAllowed(
ExecutionContext
* context)
80
DOMSecurityPolicy::DOMSecurityPolicy(
ExecutionContext
* context)
92
return isPolicyActiveInContext(
executionContext
());
100
executionContext
()->contentSecurityPolicy()->gatherReportURIs(*result.get());
107
return isAllowed<&ContentSecurityPolicy::allowInlineScript>(
executionContext
());
[
all
...]
History.cpp
88
void History::back(
ExecutionContext
* context)
93
void History::forward(
ExecutionContext
* context)
98
void History::go(
ExecutionContext
* context, int distance)
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
LocalFileSystem.cpp
37
#include "core/dom/
ExecutionContext
.h"
49
void fileSystemNotAllowed(
ExecutionContext
*, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
65
void LocalFileSystem::resolveURL(
ExecutionContext
* context, const KURL& fileSystemURL, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
74
void LocalFileSystem::requestFileSystem(
ExecutionContext
* context, FileSystemType type, long long size, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
84
void LocalFileSystem::deleteFileSystem(
ExecutionContext
* context, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
107
LocalFileSystem* LocalFileSystem::from(
ExecutionContext
* context)
FileSystemCallbacks.h
53
class
ExecutionContext
;
101
static PassOwnPtr<AsyncFileSystemCallbacks> create(PassOwnPtr<FileSystemCallback>, PassOwnPtr<ErrorCallback>,
ExecutionContext
*, FileSystemType);
105
FileSystemCallbacks(PassOwnPtr<FileSystemCallback>, PassOwnPtr<ErrorCallback>,
ExecutionContext
*, FileSystemType);
107
RefPtr<
ExecutionContext
> m_executionContext;
113
static PassOwnPtr<AsyncFileSystemCallbacks> create(PassOwnPtr<EntryCallback>, PassOwnPtr<ErrorCallback>,
ExecutionContext
*);
117
ResolveURICallbacks(PassOwnPtr<EntryCallback>, PassOwnPtr<ErrorCallback>,
ExecutionContext
*);
119
RefPtr<
ExecutionContext
> m_executionContext;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp
65
static bool isContextValid(
ExecutionContext
* context)
75
PassRefPtr<IDBRequest> IDBFactory::getDatabaseNames(
ExecutionContext
* context, ExceptionState& exceptionState)
96
PassRefPtr<IDBOpenDBRequest> IDBFactory::open(
ExecutionContext
* context, const String& name, unsigned long long version, ExceptionState& exceptionState)
106
PassRefPtr<IDBOpenDBRequest> IDBFactory::openInternal(
ExecutionContext
* context, const String& name, int64_t version, ExceptionState& exceptionState)
134
PassRefPtr<IDBOpenDBRequest> IDBFactory::open(
ExecutionContext
* context, const String& name, ExceptionState& exceptionState)
140
PassRefPtr<IDBOpenDBRequest> IDBFactory::deleteDatabase(
ExecutionContext
* context, const String& name, ExceptionState& exceptionState)
166
short IDBFactory::cmp(
ExecutionContext
* context, const ScriptValue& firstValue, const ScriptValue& secondValue, ExceptionState& exceptionState)
IDBKeyRange.cpp
37
PassRefPtr<IDBKeyRange> IDBKeyRange::fromScriptValue(
ExecutionContext
* context, const ScriptValue& value, ExceptionState& exceptionState)
65
ScriptValue IDBKeyRange::lowerValue(
ExecutionContext
* context) const
71
ScriptValue IDBKeyRange::upperValue(
ExecutionContext
* context) const
88
PassRefPtr<IDBKeyRange> IDBKeyRange::only(
ExecutionContext
* context, const ScriptValue& keyValue, ExceptionState& exceptionState)
100
PassRefPtr<IDBKeyRange> IDBKeyRange::lowerBound(
ExecutionContext
* context, const ScriptValue& boundValue, bool open, ExceptionState& exceptionState)
112
PassRefPtr<IDBKeyRange> IDBKeyRange::upperBound(
ExecutionContext
* context, const ScriptValue& boundValue, bool open, ExceptionState& exceptionState)
124
PassRefPtr<IDBKeyRange> IDBKeyRange::bound(
ExecutionContext
* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen, ExceptionState& exceptionState)
/external/chromium_org/third_party/WebKit/Source/core/events/
DOMWindowEventQueue.cpp
41
DOMWindowEventQueueTimer(DOMWindowEventQueue* eventQueue,
ExecutionContext
* context)
50
PassRefPtr<DOMWindowEventQueue> DOMWindowEventQueue::create(
ExecutionContext
* context)
55
DOMWindowEventQueue::DOMWindowEventQueue(
ExecutionContext
* context)
/external/chromium_org/third_party/WebKit/Source/core/loader/
WorkerThreadableLoader.cpp
104
void WorkerThreadableLoader::MainThreadBridge::mainThreadCreateLoader(
ExecutionContext
* context, MainThreadBridge* thisPtr, PassOwnPtr<CrossThreadResourceRequestData> requestData, ThreadableLoaderOptions options, const String& outgoingReferrer)
119
void WorkerThreadableLoader::MainThreadBridge::mainThreadDestroy(
ExecutionContext
* context, MainThreadBridge* thisPtr)
136
void WorkerThreadableLoader::MainThreadBridge::mainThreadCancel(
ExecutionContext
* context, MainThreadBridge* thisPtr)
167
static void workerGlobalScopeDidSendData(
ExecutionContext
* context, PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
178
static void workerGlobalScopeDidReceiveResponse(
ExecutionContext
* context, PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long identifier, PassOwnPtr<CrossThreadResourceResponseData> responseData)
190
static void workerGlobalScopeDidReceiveData(
ExecutionContext
* context, PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, PassOwnPtr<Vector<char> > vectorData)
203
static void workerGlobalScopeDidDownloadData(
ExecutionContext
* context, PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, int dataLength)
214
static void workerGlobalScopeDidReceiveCachedMetadata(
ExecutionContext
* context, PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, PassOwnPtr<Vector<char> > vectorData)
227
static void workerGlobalScopeDidFinishLoading(
ExecutionContext
* context, PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long identifier, double finishTime)
238
static void workerGlobalScopeDidFail(
ExecutionContext
* context, PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, const ResourceError& erro (…)
[
all
...]
WorkerThreadableLoader.h
107
static void mainThreadDestroy(
ExecutionContext
*, MainThreadBridge*);
110
static void mainThreadCreateLoader(
ExecutionContext
*, MainThreadBridge*, PassOwnPtr<CrossThreadResourceRequestData>, ThreadableLoaderOptions, const String& outgoingReferrer);
111
static void mainThreadCancel(
ExecutionContext
*, MainThreadBridge*);
/external/chromium_org/third_party/WebKit/Source/web/
NotificationPresenterImpl.cpp
37
#include "core/dom/
ExecutionContext
.h"
116
NotificationClient::Permission NotificationPresenterImpl::checkPermission(
ExecutionContext
* context)
123
void NotificationPresenterImpl::requestPermission(
ExecutionContext
* context, PassOwnPtr<VoidCallback> callback)
129
void NotificationPresenterImpl::requestPermission(
ExecutionContext
* context, WTF::PassOwnPtr<NotificationPermissionCallback> callback)
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8RecursionScope.h
35
#include "core/dom/
ExecutionContext
.h"
60
explicit V8RecursionScope(
ExecutionContext
* context)
Completed in 102 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>