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

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

Issue 1857143002: Oilpan: Remove RefCountedGarbageCollectedEventTargetWithInlineData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 } else { 935 } else {
936 visitor->trace(m_activeSourceNodes); 936 visitor->trace(m_activeSourceNodes);
937 } 937 }
938 visitor->trace(m_resumeResolvers); 938 visitor->trace(m_resumeResolvers);
939 visitor->trace(m_decodeAudioResolvers); 939 visitor->trace(m_decodeAudioResolvers);
940 940
941 visitor->trace(m_periodicWaveSine); 941 visitor->trace(m_periodicWaveSine);
942 visitor->trace(m_periodicWaveSquare); 942 visitor->trace(m_periodicWaveSquare);
943 visitor->trace(m_periodicWaveSawtooth); 943 visitor->trace(m_periodicWaveSawtooth);
944 visitor->trace(m_periodicWaveTriangle); 944 visitor->trace(m_periodicWaveTriangle);
945 RefCountedGarbageCollectedEventTargetWithInlineData<AbstractAudioContext>::t race(visitor); 945 EventTargetWithInlineData::trace(visitor);
946 ActiveDOMObject::trace(visitor); 946 ActiveDOMObject::trace(visitor);
947 } 947 }
948 948
949 SecurityOrigin* AbstractAudioContext::getSecurityOrigin() const 949 SecurityOrigin* AbstractAudioContext::getSecurityOrigin() const
950 { 950 {
951 if (getExecutionContext()) 951 if (getExecutionContext())
952 return getExecutionContext()->getSecurityOrigin(); 952 return getExecutionContext()->getSecurityOrigin();
953 953
954 return nullptr; 954 return nullptr;
955 } 955 }
956 956
957 } // namespace blink 957 } // namespace blink
958 958
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698