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

Side by Side Diff: Source/modules/webaudio/AudioNode.h

Issue 316443004: Oilpan: Remove ref counting from EventTarget and all uses of Pass/RefPtr<EventTarget>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 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
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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBTransaction.cpp ('k') | Source/modules/webaudio/AudioScheduledSourceNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698