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

Side by Side Diff: Source/modules/webaudio/OfflineAudioDestinationNode.cpp

Issue 1303153005: Introduce WebTaskRunner Patch 3/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing #include Created 5 years, 3 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
« no previous file with comments | « Source/modules/webaudio/DeferredTaskHandler.cpp ('k') | Source/platform/Task.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) 2011, Google Inc. All rights reserved. 2 * Copyright (C) 2011, 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 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 void OfflineAudioDestinationHandler::startRendering() 84 void OfflineAudioDestinationHandler::startRendering()
85 { 85 {
86 ASSERT(isMainThread()); 86 ASSERT(isMainThread());
87 ASSERT(m_renderTarget); 87 ASSERT(m_renderTarget);
88 if (!m_renderTarget) 88 if (!m_renderTarget)
89 return; 89 return;
90 90
91 if (!m_startedRendering) { 91 if (!m_startedRendering) {
92 m_startedRendering = true; 92 m_startedRendering = true;
93 m_renderThread = adoptPtr(Platform::current()->createThread("Offline Aud io Renderer")); 93 m_renderThread = adoptPtr(Platform::current()->createThread("Offline Aud io Renderer"));
94 m_renderThread->postTask(FROM_HERE, new Task(threadSafeBind(&OfflineAudi oDestinationHandler::offlineRender, PassRefPtr<OfflineAudioDestinationHandler>(t his)))); 94 m_renderThread->taskRunner()->postTask(FROM_HERE, new Task(threadSafeBin d(&OfflineAudioDestinationHandler::offlineRender, PassRefPtr<OfflineAudioDestina tionHandler>(this))));
95 } 95 }
96 } 96 }
97 97
98 void OfflineAudioDestinationHandler::stopRendering() 98 void OfflineAudioDestinationHandler::stopRendering()
99 { 99 {
100 ASSERT_NOT_REACHED(); 100 ASSERT_NOT_REACHED();
101 } 101 }
102 102
103 void OfflineAudioDestinationHandler::offlineRender() 103 void OfflineAudioDestinationHandler::offlineRender()
104 { 104 {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 } 171 }
172 172
173 OfflineAudioDestinationNode* OfflineAudioDestinationNode::create(AbstractAudioCo ntext* context, AudioBuffer* renderTarget) 173 OfflineAudioDestinationNode* OfflineAudioDestinationNode::create(AbstractAudioCo ntext* context, AudioBuffer* renderTarget)
174 { 174 {
175 return new OfflineAudioDestinationNode(*context, renderTarget); 175 return new OfflineAudioDestinationNode(*context, renderTarget);
176 } 176 }
177 177
178 } // namespace blink 178 } // namespace blink
179 179
180 #endif // ENABLE(WEB_AUDIO) 180 #endif // ENABLE(WEB_AUDIO)
OLDNEW
« no previous file with comments | « Source/modules/webaudio/DeferredTaskHandler.cpp ('k') | Source/platform/Task.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698