| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 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 13 matching lines...) Expand all Loading... |
| 24 * | 24 * |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef WorkerMessagingProxy_h | 27 #ifndef WorkerMessagingProxy_h |
| 28 #define WorkerMessagingProxy_h | 28 #define WorkerMessagingProxy_h |
| 29 | 29 |
| 30 #include "core/dom/ScriptExecutionContext.h" | 30 #include "core/dom/ScriptExecutionContext.h" |
| 31 #include "core/workers/WorkerGlobalScopeProxy.h" | 31 #include "core/workers/WorkerGlobalScopeProxy.h" |
| 32 #include "core/workers/WorkerLoaderProxy.h" | 32 #include "core/workers/WorkerLoaderProxy.h" |
| 33 #include "core/workers/WorkerObjectProxy.h" | 33 #include "core/workers/WorkerObjectProxy.h" |
| 34 #include <wtf/Forward.h> | 34 #include "wtf/Forward.h" |
| 35 #include <wtf/Noncopyable.h> | 35 #include "wtf/Noncopyable.h" |
| 36 #include <wtf/PassOwnPtr.h> | 36 #include "wtf/PassOwnPtr.h" |
| 37 #include <wtf/PassRefPtr.h> | 37 #include "wtf/PassRefPtr.h" |
| 38 #include <wtf/RefPtr.h> | 38 #include "wtf/RefPtr.h" |
| 39 #include <wtf/Vector.h> | 39 #include "wtf/Vector.h" |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 class DedicatedWorkerThread; | 43 class DedicatedWorkerThread; |
| 44 class ScriptExecutionContext; | 44 class ScriptExecutionContext; |
| 45 class Worker; | 45 class Worker; |
| 46 class WorkerClients; | 46 class WorkerClients; |
| 47 | 47 |
| 48 class WorkerMessagingProxy : public WorkerGlobalScopeProxy, public WorkerObj
ectProxy, public WorkerLoaderProxy { | 48 class WorkerMessagingProxy : public WorkerGlobalScopeProxy, public WorkerObj
ectProxy, public WorkerLoaderProxy { |
| 49 WTF_MAKE_NONCOPYABLE(WorkerMessagingProxy); WTF_MAKE_FAST_ALLOCATED; | 49 WTF_MAKE_NONCOPYABLE(WorkerMessagingProxy); WTF_MAKE_FAST_ALLOCATED; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 Vector<OwnPtr<ScriptExecutionContext::Task> > m_queuedEarlyTasks; // Tas
ks are queued here until there's a thread object created. | 112 Vector<OwnPtr<ScriptExecutionContext::Task> > m_queuedEarlyTasks; // Tas
ks are queued here until there's a thread object created. |
| 113 WorkerGlobalScopeProxy::PageInspector* m_pageInspector; | 113 WorkerGlobalScopeProxy::PageInspector* m_pageInspector; |
| 114 | 114 |
| 115 OwnPtr<WorkerClients> m_workerClients; | 115 OwnPtr<WorkerClients> m_workerClients; |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace WebCore | 118 } // namespace WebCore |
| 119 | 119 |
| 120 #endif // WorkerMessagingProxy_h | 120 #endif // WorkerMessagingProxy_h |
| OLD | NEW |