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

Unified Diff: Source/modules/mediasource/SourceBuffer.cpp

Issue 1179733009: Always enable Oilpan for EventSource. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: msvc compile fix Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/fetch/Body.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediasource/SourceBuffer.cpp
diff --git a/Source/modules/mediasource/SourceBuffer.cpp b/Source/modules/mediasource/SourceBuffer.cpp
index ceea5a8db2bc65ba31173ef4588b53b514fd3e84..f7138e6fec0b2c28be83f30fc040cbbea116a3ff 100644
--- a/Source/modules/mediasource/SourceBuffer.cpp
+++ b/Source/modules/mediasource/SourceBuffer.cpp
@@ -662,7 +662,7 @@ void SourceBuffer::appendStreamInternal(Stream* stream, ExceptionState& exceptio
// 4. Asynchronously run the stream append loop algorithm with stream and maxSize.
stream->neuter();
- m_loader = adoptPtr(new FileReaderLoader(FileReaderLoader::ReadByClient, this));
+ m_loader = FileReaderLoader::create(FileReaderLoader::ReadByClient, this);
m_stream = stream;
m_appendStreamAsyncPartRunner.runAsync();
}
« no previous file with comments | « Source/modules/fetch/Body.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698