| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 OwnPtr<WorkerObjectProxy> m_workerObjectProxy; | 90 OwnPtr<WorkerObjectProxy> m_workerObjectProxy; |
| 91 Worker* m_workerObject; | 91 Worker* m_workerObject; |
| 92 bool m_mayBeDestroyed; | 92 bool m_mayBeDestroyed; |
| 93 RefPtr<DedicatedWorkerThread> m_workerThread; | 93 RefPtr<DedicatedWorkerThread> m_workerThread; |
| 94 | 94 |
| 95 unsigned m_unconfirmedMessageCount; // Unconfirmed messages from worker obje
ct to worker thread. | 95 unsigned m_unconfirmedMessageCount; // Unconfirmed messages from worker obje
ct to worker thread. |
| 96 bool m_workerThreadHadPendingActivity; // The latest confirmation from worke
r thread reported that it was still active. | 96 bool m_workerThreadHadPendingActivity; // The latest confirmation from worke
r thread reported that it was still active. |
| 97 | 97 |
| 98 bool m_askedToTerminate; | 98 bool m_askedToTerminate; |
| 99 | 99 |
| 100 Vector<OwnPtr<ExecutionContextTask> > m_queuedEarlyTasks; // Tasks are queue
d here until there's a thread object created. | 100 Vector<OwnPtr<ExecutionContextTask>> m_queuedEarlyTasks; // Tasks are queued
here until there's a thread object created. |
| 101 OwnPtr<WorkerInspectorProxy> m_workerInspectorProxy; | 101 OwnPtr<WorkerInspectorProxy> m_workerInspectorProxy; |
| 102 | 102 |
| 103 OwnPtrWillBePersistent<WorkerClients> m_workerClients; | 103 OwnPtrWillBePersistent<WorkerClients> m_workerClients; |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace blink | 106 } // namespace blink |
| 107 | 107 |
| 108 #endif // WorkerMessagingProxy_h | 108 #endif // WorkerMessagingProxy_h |
| OLD | NEW |