Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: Source/core/workers/WorkerObjectProxy.cpp

Issue 1164753004: Tidy up CompositorWorkerManager unit tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/workers/WorkerObjectProxy.h ('k') | Source/core/workers/WorkerThreadStartupData.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/workers/WorkerObjectProxy.h ('k') | Source/core/workers/WorkerThreadStartupData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698