| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 DEFINE_ATTRIBUTE_EVENT_LISTENER(error); | 99 DEFINE_ATTRIBUTE_EVENT_LISTENER(error); |
| 100 | 100 |
| 101 // WorkerUtils | 101 // WorkerUtils |
| 102 virtual void importScripts(const Vector<String>& urls, ExceptionState&); | 102 virtual void importScripts(const Vector<String>& urls, ExceptionState&); |
| 103 // Returns null if caching is not supported. | 103 // Returns null if caching is not supported. |
| 104 virtual PassOwnPtr<CachedMetadataHandler> createWorkerScriptCachedMetadataHa
ndler(const KURL& scriptURL, const Vector<char>* metaData) { return nullptr; } | 104 virtual PassOwnPtr<CachedMetadataHandler> createWorkerScriptCachedMetadataHa
ndler(const KURL& scriptURL, const Vector<char>* metaData) { return nullptr; } |
| 105 | 105 |
| 106 WorkerNavigator* navigator() const; | 106 WorkerNavigator* navigator() const; |
| 107 | 107 |
| 108 // ScriptWrappable | 108 // ScriptWrappable |
| 109 v8::Local<v8::Object> wrap(v8::Local<v8::Object> creationContext, v8::Isolat
e*) override final; | 109 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte
xt) override final; |
| 110 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn
fo*, v8::Local<v8::Object> wrapper) override final; | 110 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn
fo*, v8::Local<v8::Object> wrapper) override final; |
| 111 | 111 |
| 112 // ExecutionContextClient | 112 // ExecutionContextClient |
| 113 WorkerEventQueue* eventQueue() const override final; | 113 WorkerEventQueue* eventQueue() const override final; |
| 114 SecurityContext& securityContext() override final { return *this; } | 114 SecurityContext& securityContext() override final { return *this; } |
| 115 | 115 |
| 116 bool isContextThread() const override final; | 116 bool isContextThread() const override final; |
| 117 bool isJSExecutionForbidden() const override final; | 117 bool isJSExecutionForbidden() const override final; |
| 118 | 118 |
| 119 double timerAlignmentInterval() const override final; | 119 double timerAlignmentInterval() const override final; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 unsigned long m_workerExceptionUniqueIdentifier; | 199 unsigned long m_workerExceptionUniqueIdentifier; |
| 200 WillBeHeapHashMap<unsigned long, RefPtrWillBeMember<ConsoleMessage>> m_pendi
ngMessages; | 200 WillBeHeapHashMap<unsigned long, RefPtrWillBeMember<ConsoleMessage>> m_pendi
ngMessages; |
| 201 }; | 201 }; |
| 202 | 202 |
| 203 DEFINE_TYPE_CASTS(WorkerGlobalScope, ExecutionContext, context, context->isWorke
rGlobalScope(), context.isWorkerGlobalScope()); | 203 DEFINE_TYPE_CASTS(WorkerGlobalScope, ExecutionContext, context, context->isWorke
rGlobalScope(), context.isWorkerGlobalScope()); |
| 204 | 204 |
| 205 } // namespace blink | 205 } // namespace blink |
| 206 | 206 |
| 207 #endif // WorkerGlobalScope_h | 207 #endif // WorkerGlobalScope_h |
| OLD | NEW |