| 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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 void AudioNode::setChannelInterpretation(const String& interpretation, Exception
State& exceptionState) | 919 void AudioNode::setChannelInterpretation(const String& interpretation, Exception
State& exceptionState) |
| 920 { | 920 { |
| 921 handler().setChannelInterpretation(interpretation, exceptionState); | 921 handler().setChannelInterpretation(interpretation, exceptionState); |
| 922 } | 922 } |
| 923 | 923 |
| 924 const AtomicString& AudioNode::interfaceName() const | 924 const AtomicString& AudioNode::interfaceName() const |
| 925 { | 925 { |
| 926 return EventTargetNames::AudioNode; | 926 return EventTargetNames::AudioNode; |
| 927 } | 927 } |
| 928 | 928 |
| 929 ExecutionContext* AudioNode::executionContext() const | 929 ExecutionContext* AudioNode::getExecutionContext() const |
| 930 { | 930 { |
| 931 return context()->executionContext(); | 931 return context()->getExecutionContext(); |
| 932 } | 932 } |
| 933 | 933 |
| 934 void AudioNode::didAddOutput(unsigned numberOfOutputs) | 934 void AudioNode::didAddOutput(unsigned numberOfOutputs) |
| 935 { | 935 { |
| 936 m_connectedNodes.append(nullptr); | 936 m_connectedNodes.append(nullptr); |
| 937 ASSERT_UNUSED(numberOfOutputs, numberOfOutputs == m_connectedNodes.size()); | 937 ASSERT_UNUSED(numberOfOutputs, numberOfOutputs == m_connectedNodes.size()); |
| 938 m_connectedParams.append(nullptr); | 938 m_connectedParams.append(nullptr); |
| 939 ASSERT_UNUSED(numberOfOutputs, numberOfOutputs == m_connectedParams.size()); | 939 ASSERT_UNUSED(numberOfOutputs, numberOfOutputs == m_connectedParams.size()); |
| 940 } | 940 } |
| 941 | 941 |
| 942 } // namespace blink | 942 } // namespace blink |
| 943 | 943 |
| OLD | NEW |