| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "modules/webaudio/PannerNode.h" | 66 #include "modules/webaudio/PannerNode.h" |
| 67 #include "modules/webaudio/PeriodicWave.h" | 67 #include "modules/webaudio/PeriodicWave.h" |
| 68 #include "modules/webaudio/PeriodicWaveConstraints.h" | 68 #include "modules/webaudio/PeriodicWaveConstraints.h" |
| 69 #include "modules/webaudio/ScriptProcessorNode.h" | 69 #include "modules/webaudio/ScriptProcessorNode.h" |
| 70 #include "modules/webaudio/StereoPannerNode.h" | 70 #include "modules/webaudio/StereoPannerNode.h" |
| 71 #include "modules/webaudio/WaveShaperNode.h" | 71 #include "modules/webaudio/WaveShaperNode.h" |
| 72 #include "platform/CrossThreadFunctional.h" | 72 #include "platform/CrossThreadFunctional.h" |
| 73 #include "platform/Histogram.h" | 73 #include "platform/Histogram.h" |
| 74 #include "platform/UserGestureIndicator.h" | 74 #include "platform/UserGestureIndicator.h" |
| 75 #include "platform/audio/IIRFilter.h" | 75 #include "platform/audio/IIRFilter.h" |
| 76 #include "platform/wtf/text/WTFString.h" |
| 76 #include "public/platform/Platform.h" | 77 #include "public/platform/Platform.h" |
| 77 #include "wtf/text/WTFString.h" | |
| 78 | 78 |
| 79 namespace blink { | 79 namespace blink { |
| 80 | 80 |
| 81 BaseAudioContext* BaseAudioContext::Create( | 81 BaseAudioContext* BaseAudioContext::Create( |
| 82 Document& document, | 82 Document& document, |
| 83 const AudioContextOptions& context_options, | 83 const AudioContextOptions& context_options, |
| 84 ExceptionState& exception_state) { | 84 ExceptionState& exception_state) { |
| 85 return AudioContext::Create(document, context_options, exception_state); | 85 return AudioContext::Create(document, context_options, exception_state); |
| 86 } | 86 } |
| 87 | 87 |
| (...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 } | 921 } |
| 922 | 922 |
| 923 SecurityOrigin* BaseAudioContext::GetSecurityOrigin() const { | 923 SecurityOrigin* BaseAudioContext::GetSecurityOrigin() const { |
| 924 if (GetExecutionContext()) | 924 if (GetExecutionContext()) |
| 925 return GetExecutionContext()->GetSecurityOrigin(); | 925 return GetExecutionContext()->GetSecurityOrigin(); |
| 926 | 926 |
| 927 return nullptr; | 927 return nullptr; |
| 928 } | 928 } |
| 929 | 929 |
| 930 } // namespace blink | 930 } // namespace blink |
| OLD | NEW |