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

Unified Diff: Source/web/AsyncFileWriterChromium.cpp

Issue 18411005: Use the async version of WebFileSystem::createFileWriter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 5 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/web/AsyncFileWriterChromium.h ('k') | Source/web/WebFileSystemCallbacksImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/AsyncFileWriterChromium.cpp
diff --git a/Source/web/AsyncFileWriterChromium.cpp b/Source/web/AsyncFileWriterChromium.cpp
index 122be84e1e1ba6f767ada6e407ccf1c20abd94d2..83460761563fd386cbc5adff8c519755ec773ccd 100644
--- a/Source/web/AsyncFileWriterChromium.cpp
+++ b/Source/web/AsyncFileWriterChromium.cpp
@@ -38,6 +38,11 @@
namespace WebCore {
+PassOwnPtr<AsyncFileWriterChromium> AsyncFileWriterChromium::create(AsyncFileWriterClient* client)
+{
+ return adoptPtr(new AsyncFileWriterChromium(client));
+}
+
AsyncFileWriterChromium::AsyncFileWriterChromium(AsyncFileWriterClient* client)
: m_client(client)
{
« no previous file with comments | « Source/web/AsyncFileWriterChromium.h ('k') | Source/web/WebFileSystemCallbacksImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698