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

Side by Side Diff: third_party/WebKit/Source/modules/mediasource/SourceBuffer.cpp

Issue 2346663004: Moving platform tracing things into platform/tracing. (Closed)
Patch Set: Created 4 years, 3 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "core/html/MediaError.h" 45 #include "core/html/MediaError.h"
46 #include "core/html/TimeRanges.h" 46 #include "core/html/TimeRanges.h"
47 #include "core/html/track/AudioTrack.h" 47 #include "core/html/track/AudioTrack.h"
48 #include "core/html/track/AudioTrackList.h" 48 #include "core/html/track/AudioTrackList.h"
49 #include "core/html/track/VideoTrack.h" 49 #include "core/html/track/VideoTrack.h"
50 #include "core/html/track/VideoTrackList.h" 50 #include "core/html/track/VideoTrackList.h"
51 #include "core/streams/Stream.h" 51 #include "core/streams/Stream.h"
52 #include "modules/mediasource/MediaSource.h" 52 #include "modules/mediasource/MediaSource.h"
53 #include "modules/mediasource/SourceBufferTrackBaseSupplement.h" 53 #include "modules/mediasource/SourceBufferTrackBaseSupplement.h"
54 #include "platform/RuntimeEnabledFeatures.h" 54 #include "platform/RuntimeEnabledFeatures.h"
55 #include "platform/TraceEvent.h" 55 #include "platform/tracing/TraceEvent.h"
56 #include "public/platform/WebSourceBuffer.h" 56 #include "public/platform/WebSourceBuffer.h"
57 #include "wtf/MathExtras.h" 57 #include "wtf/MathExtras.h"
58 #include <limits> 58 #include <limits>
59 #include <memory> 59 #include <memory>
60 #include <sstream> 60 #include <sstream>
61 61
62 #ifndef BLINK_SBLOG 62 #ifndef BLINK_SBLOG
63 #define BLINK_SBLOG DVLOG(3) 63 #define BLINK_SBLOG DVLOG(3)
64 #endif 64 #endif
65 65
(...skipping 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 visitor->trace(m_removeAsyncPartRunner); 1258 visitor->trace(m_removeAsyncPartRunner);
1259 visitor->trace(m_appendStreamAsyncPartRunner); 1259 visitor->trace(m_appendStreamAsyncPartRunner);
1260 visitor->trace(m_stream); 1260 visitor->trace(m_stream);
1261 visitor->trace(m_audioTracks); 1261 visitor->trace(m_audioTracks);
1262 visitor->trace(m_videoTracks); 1262 visitor->trace(m_videoTracks);
1263 EventTargetWithInlineData::trace(visitor); 1263 EventTargetWithInlineData::trace(visitor);
1264 ActiveDOMObject::trace(visitor); 1264 ActiveDOMObject::trace(visitor);
1265 } 1265 }
1266 1266
1267 } // namespace blink 1267 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698