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

Side by Side Diff: Source/modules/mediastream/RTCPeerConnection.cpp

Issue 1240223003: Oilpan: remove unnecessary ENABLE(OILPAN) protections of trace() calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 dispatchEvent((*it).release()); 829 dispatchEvent((*it).release());
830 830
831 events.clear(); 831 events.clear();
832 } 832 }
833 833
834 DEFINE_TRACE(RTCPeerConnection) 834 DEFINE_TRACE(RTCPeerConnection)
835 { 835 {
836 visitor->trace(m_localStreams); 836 visitor->trace(m_localStreams);
837 visitor->trace(m_remoteStreams); 837 visitor->trace(m_remoteStreams);
838 visitor->trace(m_dataChannels); 838 visitor->trace(m_dataChannels);
839 #if ENABLE(OILPAN)
840 visitor->trace(m_scheduledEvents); 839 visitor->trace(m_scheduledEvents);
841 #endif
842 RefCountedGarbageCollectedEventTargetWithInlineData<RTCPeerConnection>::trac e(visitor); 840 RefCountedGarbageCollectedEventTargetWithInlineData<RTCPeerConnection>::trac e(visitor);
843 ActiveDOMObject::trace(visitor); 841 ActiveDOMObject::trace(visitor);
844 } 842 }
845 843
846 } // namespace blink 844 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/mediasource/MediaSource.cpp ('k') | Source/modules/serviceworkers/ServiceWorkerMessageEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698