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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/AbstractAudioContext.h

Issue 1818233003: Merge WTF::initializeMainThread into WTF::initialize (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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 22 matching lines...) Expand all
33 #include "core/events/EventListener.h" 33 #include "core/events/EventListener.h"
34 #include "modules/EventTargetModules.h" 34 #include "modules/EventTargetModules.h"
35 #include "modules/ModulesExport.h" 35 #include "modules/ModulesExport.h"
36 #include "modules/webaudio/AsyncAudioDecoder.h" 36 #include "modules/webaudio/AsyncAudioDecoder.h"
37 #include "modules/webaudio/AudioDestinationNode.h" 37 #include "modules/webaudio/AudioDestinationNode.h"
38 #include "modules/webaudio/DeferredTaskHandler.h" 38 #include "modules/webaudio/DeferredTaskHandler.h"
39 #include "modules/webaudio/IIRFilterNode.h" 39 #include "modules/webaudio/IIRFilterNode.h"
40 #include "platform/audio/AudioBus.h" 40 #include "platform/audio/AudioBus.h"
41 #include "platform/heap/Handle.h" 41 #include "platform/heap/Handle.h"
42 #include "wtf/HashSet.h" 42 #include "wtf/HashSet.h"
43 #include "wtf/MainThread.h"
44 #include "wtf/RefPtr.h" 43 #include "wtf/RefPtr.h"
45 #include "wtf/Threading.h" 44 #include "wtf/Threading.h"
46 #include "wtf/Vector.h" 45 #include "wtf/Vector.h"
47 #include "wtf/build_config.h" 46 #include "wtf/build_config.h"
48 47
49 namespace blink { 48 namespace blink {
50 49
51 class AnalyserNode; 50 class AnalyserNode;
52 class AudioBuffer; 51 class AudioBuffer;
53 class AudioBufferCallback; 52 class AudioBufferCallback;
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 Member<PeriodicWave> m_periodicWaveTriangle; 348 Member<PeriodicWave> m_periodicWaveTriangle;
350 349
351 // This is considering 32 is large enough for multiple channels audio. 350 // This is considering 32 is large enough for multiple channels audio.
352 // It is somewhat arbitrary and could be increased if necessary. 351 // It is somewhat arbitrary and could be increased if necessary.
353 enum { MaxNumberOfChannels = 32 }; 352 enum { MaxNumberOfChannels = 32 };
354 }; 353 };
355 354
356 } // namespace blink 355 } // namespace blink
357 356
358 #endif // AbstractAudioContext_h 357 #endif // AbstractAudioContext_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698