HomeSort by relevance Sort by last modified time
    Searched refs:WorkerGlobalScope (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerSupplementable.h 35 class WorkerGlobalScope;
37 typedef Supplementable<WorkerGlobalScope> WorkerSupplementable;
38 typedef Supplement<WorkerGlobalScope> WorkerSupplement;
WorkerLocation.idl 30 GlobalContext=WorkerGlobalScope
WorkerNavigator.idl 30 GlobalContext=WorkerGlobalScope
WorkerGlobalScope.idl 29 GlobalContext=WorkerGlobalScope,
30 ] interface WorkerGlobalScope : EventTarget {
32 // WorkerGlobalScope
33 [Replaceable] readonly attribute WorkerGlobalScope self;
48 WorkerGlobalScope implements ImageBitmapFactories;
49 WorkerGlobalScope implements WindowBase64;
50 WorkerGlobalScope implements WindowTimers;
WorkerGlobalScope.cpp 29 #include "core/workers/WorkerGlobalScope.h"
68 WorkerGlobalScope* workerGlobalScope = toWorkerGlobalScope(context);
70 workerGlobalScope->thread()->workerReportingProxy().workerGlobalScopeClosed();
76 WorkerGlobalScope::WorkerGlobalScope(const KURL& url, const String& userAgent, WorkerThread* thread, double timeOrigin, PassOwnPtr<WorkerClients> workerClients)
92 // Notify proxy that a new WorkerGlobalScope has been created and started.
96 WorkerGlobalScope::~WorkerGlobalScope()
109 void WorkerGlobalScope::applyContentSecurityPolicyFromString(const String& policy, ContentSecurityPolicy::HeaderType cont (…)
    [all...]
DedicatedWorkerGlobalScope.idl 33 ] interface DedicatedWorkerGlobalScope : WorkerGlobalScope {
SharedWorkerGlobalScope.idl 33 ] interface SharedWorkerGlobalScope : WorkerGlobalScope {
WorkerRunLoop.h 44 class WorkerGlobalScope;
53 void run(WorkerGlobalScope*);
58 MessageQueueWaitResult runInMode(WorkerGlobalScope*, const String& mode, WaitMode = WaitForMessage);
81 MessageQueueWaitResult runInMode(WorkerGlobalScope*, const ModePredicate&, WaitMode);
85 void runCleanupTasks(WorkerGlobalScope*);
WorkerConsole.h 51 static PassRefPtr<WorkerConsole> create(WorkerGlobalScope* scope) { return adoptRef(new WorkerConsole(scope)); }
59 explicit WorkerConsole(WorkerGlobalScope*);
64 WorkerGlobalScope* m_scope;
WorkerThread.h 42 class WorkerGlobalScope;
72 virtual PassRefPtr<WorkerGlobalScope> createWorkerGlobalScope(PassOwnPtr<WorkerThreadStartupData>) = 0;
77 WorkerGlobalScope* workerGlobalScope() { return m_workerGlobalScope.get(); }
90 RefPtr<WorkerGlobalScope> m_workerGlobalScope;
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
WorkerGlobalScopeNotifications.h 38 class WorkerGlobalScope;
44 static NotificationCenter* webkitNotifications(WorkerGlobalScope*);
45 static WorkerGlobalScopeNotifications* from(WorkerGlobalScope*);
48 explicit WorkerGlobalScopeNotifications(WorkerGlobalScope*);
53 WorkerGlobalScope* m_context;
WorkerGlobalScopeNotifications.idl 29 ] partial interface WorkerGlobalScope {
WorkerGlobalScopeNotifications.cpp 33 #include "core/workers/WorkerGlobalScope.h"
39 WorkerGlobalScopeNotifications::WorkerGlobalScopeNotifications(WorkerGlobalScope* context)
53 WorkerGlobalScopeNotifications* WorkerGlobalScopeNotifications::from(WorkerGlobalScope* context)
63 NotificationCenter* WorkerGlobalScopeNotifications::webkitNotifications(WorkerGlobalScope* context)
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
WorkerGlobalScopeCrypto.idl 31 partial interface WorkerGlobalScope {
  /external/chromium_org/third_party/WebKit/Source/modules/performance/
WorkerGlobalScopePerformance.idl 33 ] partial interface WorkerGlobalScope {
WorkerGlobalScopePerformance.h 43 static WorkerGlobalScopePerformance* from(WorkerGlobalScope*);
45 static WorkerPerformance* performance(WorkerGlobalScope*);
50 WorkerPerformance* getPerformance(WorkerGlobalScope*);
WorkerGlobalScopePerformance.cpp 35 #include "core/workers/WorkerGlobalScope.h"
53 WorkerGlobalScopePerformance* WorkerGlobalScopePerformance::from(WorkerGlobalScope* context)
63 WorkerPerformance* WorkerGlobalScopePerformance::performance(WorkerGlobalScope* context)
68 WorkerPerformance* WorkerGlobalScopePerformance::getPerformance(WorkerGlobalScope* context)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
WorkerRuntimeAgent.h 39 class WorkerGlobalScope;
43 static PassOwnPtr<WorkerRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* context)
52 void willEvaluateWorkerScript(WorkerGlobalScope*, int workerThreadStartMode);
55 WorkerRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalScope*);
59 WorkerGlobalScope* m_workerGlobalScope;
WorkerDebuggerAgent.h 39 class WorkerGlobalScope;
46 static PassOwnPtr<WorkerDebuggerAgent> create(InstrumentingAgents*, InspectorCompositeState*, WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
53 WorkerDebuggerAgent(InstrumentingAgents*, InspectorCompositeState*, WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
63 WorkerGlobalScope* m_inspectedWorkerGlobalScope;
WorkerInspectorController.h 50 class WorkerGlobalScope;
57 WorkerInspectorController(WorkerGlobalScope*);
67 friend InstrumentingAgents* instrumentationForWorkerGlobalScope(WorkerGlobalScope*);
69 WorkerGlobalScope* m_workerGlobalScope;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
WorkerGlobalScopeFileSystem.h 40 class WorkerGlobalScope;
49 static void webkitRequestFileSystem(WorkerGlobalScope*, int type, long long size, PassOwnPtr<FileSystemCallback> successCallback, PassOwnPtr<ErrorCallback>);
50 static PassRefPtr<DOMFileSystemSync> webkitRequestFileSystemSync(WorkerGlobalScope*, int type, long long size, ExceptionState&);
51 static void webkitResolveLocalFileSystemURL(WorkerGlobalScope*, const String& url, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback>);
52 static PassRefPtr<EntrySync> webkitResolveLocalFileSystemSyncURL(WorkerGlobalScope*, const String& url, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
WorkerGlobalScopeWebDatabase.h 41 class WorkerGlobalScope;
45 static PassRefPtr<Database> openDatabase(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
46 static PassRefPtr<DatabaseSync> openDatabaseSync(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptDebugServer.h 42 class WorkerGlobalScope;
48 WorkerScriptDebugServer(WorkerGlobalScope*, const String&);
61 typedef HashMap<WorkerGlobalScope*, ScriptDebugListener*> ListenersMap;
63 WorkerGlobalScope* m_workerGlobalScope;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MessageChannel.idl 29 GlobalContext=Window&WorkerGlobalScope,
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerGlobalScope.idl 33 ] interface ServiceWorkerGlobalScope : WorkerGlobalScope {

Completed in 2646 milliseconds

1 2 3 4 5