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

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

Issue 2780403004: Create core/html/media/ and move auxiliary media files in it. (Closed)
Patch Set: actually add autoplay files Created 3 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) 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 23 matching lines...) Expand all
34 #include "bindings/core/v8/ExceptionState.h" 34 #include "bindings/core/v8/ExceptionState.h"
35 #include "core/dom/DOMArrayBuffer.h" 35 #include "core/dom/DOMArrayBuffer.h"
36 #include "core/dom/DOMArrayBufferView.h" 36 #include "core/dom/DOMArrayBufferView.h"
37 #include "core/dom/ExceptionCode.h" 37 #include "core/dom/ExceptionCode.h"
38 #include "core/dom/ExecutionContext.h" 38 #include "core/dom/ExecutionContext.h"
39 #include "core/events/Event.h" 39 #include "core/events/Event.h"
40 #include "core/events/GenericEventQueue.h" 40 #include "core/events/GenericEventQueue.h"
41 #include "core/frame/Deprecation.h" 41 #include "core/frame/Deprecation.h"
42 #include "core/frame/UseCounter.h" 42 #include "core/frame/UseCounter.h"
43 #include "core/html/HTMLMediaElement.h" 43 #include "core/html/HTMLMediaElement.h"
44 #include "core/html/MediaError.h"
45 #include "core/html/TimeRanges.h" 44 #include "core/html/TimeRanges.h"
46 #include "core/html/track/AudioTrack.h" 45 #include "core/html/track/AudioTrack.h"
47 #include "core/html/track/AudioTrackList.h" 46 #include "core/html/track/AudioTrackList.h"
48 #include "core/html/track/VideoTrack.h" 47 #include "core/html/track/VideoTrack.h"
49 #include "core/html/track/VideoTrackList.h" 48 #include "core/html/track/VideoTrackList.h"
50 #include "modules/mediasource/MediaSource.h" 49 #include "modules/mediasource/MediaSource.h"
51 #include "modules/mediasource/SourceBufferTrackBaseSupplement.h" 50 #include "modules/mediasource/SourceBufferTrackBaseSupplement.h"
52 #include "platform/RuntimeEnabledFeatures.h" 51 #include "platform/RuntimeEnabledFeatures.h"
53 #include "platform/instrumentation/tracing/TraceEvent.h" 52 #include "platform/instrumentation/tracing/TraceEvent.h"
54 #include "public/platform/WebSourceBuffer.h" 53 #include "public/platform/WebSourceBuffer.h"
(...skipping 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after
1299 visitor->trace(m_asyncEventQueue); 1298 visitor->trace(m_asyncEventQueue);
1300 visitor->trace(m_appendBufferAsyncPartRunner); 1299 visitor->trace(m_appendBufferAsyncPartRunner);
1301 visitor->trace(m_removeAsyncPartRunner); 1300 visitor->trace(m_removeAsyncPartRunner);
1302 visitor->trace(m_audioTracks); 1301 visitor->trace(m_audioTracks);
1303 visitor->trace(m_videoTracks); 1302 visitor->trace(m_videoTracks);
1304 EventTargetWithInlineData::trace(visitor); 1303 EventTargetWithInlineData::trace(visitor);
1305 SuspendableObject::trace(visitor); 1304 SuspendableObject::trace(visitor);
1306 } 1305 }
1307 1306
1308 } // namespace blink 1307 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698