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

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

Issue 2482653002: Move MIME related platform files under network/mime (Closed)
Patch Set: fix Created 4 years 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 25 matching lines...) Expand all
36 #include "core/dom/ExceptionCode.h" 36 #include "core/dom/ExceptionCode.h"
37 #include "core/events/Event.h" 37 #include "core/events/Event.h"
38 #include "core/events/GenericEventQueue.h" 38 #include "core/events/GenericEventQueue.h"
39 #include "core/frame/Deprecation.h" 39 #include "core/frame/Deprecation.h"
40 #include "core/frame/UseCounter.h" 40 #include "core/frame/UseCounter.h"
41 #include "core/html/HTMLMediaElement.h" 41 #include "core/html/HTMLMediaElement.h"
42 #include "core/html/track/AudioTrackList.h" 42 #include "core/html/track/AudioTrackList.h"
43 #include "core/html/track/VideoTrackList.h" 43 #include "core/html/track/VideoTrackList.h"
44 #include "modules/mediasource/MediaSourceRegistry.h" 44 #include "modules/mediasource/MediaSourceRegistry.h"
45 #include "modules/mediasource/SourceBufferTrackBaseSupplement.h" 45 #include "modules/mediasource/SourceBufferTrackBaseSupplement.h"
46 #include "platform/ContentType.h"
47 #include "platform/MIMETypeRegistry.h"
48 #include "platform/RuntimeEnabledFeatures.h" 46 #include "platform/RuntimeEnabledFeatures.h"
47 #include "platform/network/mime/ContentType.h"
48 #include "platform/network/mime/MIMETypeRegistry.h"
49 #include "platform/tracing/TraceEvent.h" 49 #include "platform/tracing/TraceEvent.h"
50 #include "public/platform/WebMediaSource.h" 50 #include "public/platform/WebMediaSource.h"
51 #include "public/platform/WebSourceBuffer.h" 51 #include "public/platform/WebSourceBuffer.h"
52 #include "wtf/PtrUtil.h" 52 #include "wtf/PtrUtil.h"
53 #include "wtf/text/CString.h" 53 #include "wtf/text/CString.h"
54 #include <memory> 54 #include <memory>
55 55
56 #ifndef BLINK_MSLOG 56 #ifndef BLINK_MSLOG
57 #define BLINK_MSLOG DVLOG(3) 57 #define BLINK_MSLOG DVLOG(3)
58 #endif 58 #endif
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 event->setTarget(this); 815 event->setTarget(this);
816 816
817 m_asyncEventQueue->enqueueEvent(event); 817 m_asyncEventQueue->enqueueEvent(event);
818 } 818 }
819 819
820 URLRegistry& MediaSource::registry() const { 820 URLRegistry& MediaSource::registry() const {
821 return MediaSourceRegistry::registry(); 821 return MediaSourceRegistry::registry();
822 } 822 }
823 823
824 } // namespace blink 824 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.cpp ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698