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

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

Issue 416333002: Introduce AudioSourceProviderClientLockScope. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch Set 2 + explicit Created 6 years, 4 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) 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // As an audio source, we will never propagate silence. 66 // As an audio source, we will never propagate silence.
67 virtual bool propagatesSilence() const OVERRIDE { return false; } 67 virtual bool propagatesSilence() const OVERRIDE { return false; }
68 68
69 RefPtrWillBeMember<HTMLMediaElement> m_mediaElement; 69 RefPtrWillBeMember<HTMLMediaElement> m_mediaElement;
70 Mutex m_processLock; 70 Mutex m_processLock;
71 71
72 unsigned m_sourceNumberOfChannels; 72 unsigned m_sourceNumberOfChannels;
73 double m_sourceSampleRate; 73 double m_sourceSampleRate;
74 74
75 OwnPtr<MultiChannelResampler> m_multiChannelResampler; 75 OwnPtr<MultiChannelResampler> m_multiChannelResampler;
76 // Oilpan: This object must be alive between lock() and unlock().
77 GC_PLUGIN_IGNORE("http://crbug.com/395940")
78 RefPtrWillBePersistent<MediaElementAudioSourceNode> m_keepAliveWhileLocking;
79 }; 76 };
80 77
81 } // namespace blink 78 } // namespace blink
82 79
83 #endif // ENABLE(WEB_AUDIO) 80 #endif // ENABLE(WEB_AUDIO)
84 81
85 #endif // MediaElementAudioSourceNode_h 82 #endif // MediaElementAudioSourceNode_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/modules/webaudio/MediaElementAudioSourceNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698