OLD | NEW |
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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 volatile int m_connectionRefCount; | 228 volatile int m_connectionRefCount; |
229 | 229 |
230 bool m_isMarkedForDeletion; | 230 bool m_isMarkedForDeletion; |
231 bool m_isDisabled; | 231 bool m_isDisabled; |
232 | 232 |
233 #if DEBUG_AUDIONODE_REFERENCES | 233 #if DEBUG_AUDIONODE_REFERENCES |
234 static bool s_isNodeCountInitialized; | 234 static bool s_isNodeCountInitialized; |
235 static int s_nodeCount[NodeTypeEnd]; | 235 static int s_nodeCount[NodeTypeEnd]; |
236 #endif | 236 #endif |
237 | 237 |
| 238 #if !ENABLE(OILPAN) |
238 virtual void refEventTarget() OVERRIDE FINAL { ref(); } | 239 virtual void refEventTarget() OVERRIDE FINAL { ref(); } |
239 virtual void derefEventTarget() OVERRIDE FINAL { deref(); } | 240 virtual void derefEventTarget() OVERRIDE FINAL { deref(); } |
| 241 #endif |
240 | 242 |
241 protected: | 243 protected: |
242 unsigned m_channelCount; | 244 unsigned m_channelCount; |
243 ChannelCountMode m_channelCountMode; | 245 ChannelCountMode m_channelCountMode; |
244 AudioBus::ChannelInterpretation m_channelInterpretation; | 246 AudioBus::ChannelInterpretation m_channelInterpretation; |
245 }; | 247 }; |
246 | 248 |
247 } // namespace WebCore | 249 } // namespace WebCore |
248 | 250 |
249 #endif // AudioNode_h | 251 #endif // AudioNode_h |
OLD | NEW |