| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "core/dom/ExecutionContext.h" | 37 #include "core/dom/ExecutionContext.h" |
| 38 #include "core/inspector/ConsoleMessage.h" | 38 #include "core/inspector/ConsoleMessage.h" |
| 39 #include "core/workers/WorkerMessagingProxy.h" | 39 #include "core/workers/WorkerMessagingProxy.h" |
| 40 #include "platform/NotImplemented.h" | 40 #include "platform/NotImplemented.h" |
| 41 #include "wtf/Functional.h" | 41 #include "wtf/Functional.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 PassOwnPtr<WorkerObjectProxy> WorkerObjectProxy::create(ExecutionContext* execut
ionContext, WorkerMessagingProxy* messagingProxy) | 45 PassOwnPtr<WorkerObjectProxy> WorkerObjectProxy::create(ExecutionContext* execut
ionContext, WorkerMessagingProxy* messagingProxy) |
| 46 { | 46 { |
| 47 ASSERT(messagingProxy); |
| 47 return adoptPtr(new WorkerObjectProxy(executionContext, messagingProxy)); | 48 return adoptPtr(new WorkerObjectProxy(executionContext, messagingProxy)); |
| 48 } | 49 } |
| 49 | 50 |
| 50 void WorkerObjectProxy::postMessageToWorkerObject(PassRefPtr<SerializedScriptVal
ue> message, PassOwnPtr<MessagePortChannelArray> channels) | 51 void WorkerObjectProxy::postMessageToWorkerObject(PassRefPtr<SerializedScriptVal
ue> message, PassOwnPtr<MessagePortChannelArray> channels) |
| 51 { | 52 { |
| 52 m_executionContext->postTask(FROM_HERE, createCrossThreadTask(&WorkerMessagi
ngProxy::postMessageToWorkerObject, m_messagingProxy, message, channels)); | 53 m_executionContext->postTask(FROM_HERE, createCrossThreadTask(&WorkerMessagi
ngProxy::postMessageToWorkerObject, m_messagingProxy, message, channels)); |
| 53 } | 54 } |
| 54 | 55 |
| 55 void WorkerObjectProxy::postTaskToMainExecutionContext(PassOwnPtr<ExecutionConte
xtTask> task) | 56 void WorkerObjectProxy::postTaskToMainExecutionContext(PassOwnPtr<ExecutionConte
xtTask> task) |
| 56 { | 57 { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 m_executionContext->postTask(FROM_HERE, createCrossThreadTask(&WorkerMessagi
ngProxy::workerThreadTerminated, m_messagingProxy)); | 101 m_executionContext->postTask(FROM_HERE, createCrossThreadTask(&WorkerMessagi
ngProxy::workerThreadTerminated, m_messagingProxy)); |
| 101 } | 102 } |
| 102 | 103 |
| 103 WorkerObjectProxy::WorkerObjectProxy(ExecutionContext* executionContext, WorkerM
essagingProxy* messagingProxy) | 104 WorkerObjectProxy::WorkerObjectProxy(ExecutionContext* executionContext, WorkerM
essagingProxy* messagingProxy) |
| 104 : m_executionContext(executionContext) | 105 : m_executionContext(executionContext) |
| 105 , m_messagingProxy(messagingProxy) | 106 , m_messagingProxy(messagingProxy) |
| 106 { | 107 { |
| 107 } | 108 } |
| 108 | 109 |
| 109 } // namespace blink | 110 } // namespace blink |
| OLD | NEW |