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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/AudioNode.cpp

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes 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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698