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

Unified Diff: Source/core/fileapi/FileReader.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 | « no previous file | Source/core/fileapi/FileReaderLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileReader.cpp
diff --git a/Source/core/fileapi/FileReader.cpp b/Source/core/fileapi/FileReader.cpp
index f5bf8690195edb7761fc53d15ebaa556dfce3e36..861e23ac7ca847e826a3a195bba9e5a84f03ab6b 100644
--- a/Source/core/fileapi/FileReader.cpp
+++ b/Source/core/fileapi/FileReader.cpp
@@ -319,7 +319,7 @@ void FileReader::executePendingRead()
ASSERT(m_loadingState == LoadingStatePending);
m_loadingState = LoadingStateLoading;
- m_loader = adoptPtr(new FileReaderLoader(m_readType, this));
+ m_loader = FileReaderLoader::create(m_readType, this);
m_loader->setEncoding(m_encoding);
m_loader->setDataType(m_blobType);
m_loader->start(executionContext(), m_blobDataHandle);
« no previous file with comments | « no previous file | Source/core/fileapi/FileReaderLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698