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

Side by Side Diff: Source/WebCore/Modules/webaudio/PannerNode.h

Issue 12284015: Merge 142687 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 10 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 | « no previous file | Source/WebCore/Modules/webaudio/PannerNode.cpp » ('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) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 FloatPoint3D m_velocity; 147 FloatPoint3D m_velocity;
148 148
149 // Gain 149 // Gain
150 RefPtr<AudioGain> m_distanceGain; 150 RefPtr<AudioGain> m_distanceGain;
151 RefPtr<AudioGain> m_coneGain; 151 RefPtr<AudioGain> m_coneGain;
152 DistanceEffect m_distanceEffect; 152 DistanceEffect m_distanceEffect;
153 ConeEffect m_coneEffect; 153 ConeEffect m_coneEffect;
154 float m_lastGain; 154 float m_lastGain;
155 155
156 unsigned m_connectionCount; 156 unsigned m_connectionCount;
157
158 // Synchronize process() and setPanningModel() which can change the panner.
159 mutable Mutex m_pannerLock;
157 }; 160 };
158 161
159 } // namespace WebCore 162 } // namespace WebCore
160 163
161 #endif // PannerNode_h 164 #endif // PannerNode_h
OLDNEW
« no previous file with comments | « no previous file | Source/WebCore/Modules/webaudio/PannerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698