| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/loader/temporary_file_stream.h" | 5 #include "content/browser/loader/temporary_file_stream.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/files/file_proxy.h" | 9 #include "base/files/file_proxy.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "content/public/browser/browser_thread.h" | 11 #include "content/public/browser/browser_thread.h" |
| 12 #include "net/base/file_stream.h" | 12 #include "net/base/file_stream.h" |
| 13 #include "storage/common/blob/shareable_file_reference.h" | 13 #include "storage/browser/blob/shareable_file_reference.h" |
| 14 | 14 |
| 15 using storage::ShareableFileReference; | 15 using storage::ShareableFileReference; |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 | 18 |
| 19 namespace { | 19 namespace { |
| 20 | 20 |
| 21 void DidCreateTemporaryFile( | 21 void DidCreateTemporaryFile( |
| 22 const CreateTemporaryFileStreamCallback& callback, | 22 const CreateTemporaryFileStreamCallback& callback, |
| 23 scoped_ptr<base::FileProxy> file_proxy, | 23 scoped_ptr<base::FileProxy> file_proxy, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 54 | 54 |
| 55 scoped_ptr<base::FileProxy> file_proxy(new base::FileProxy( | 55 scoped_ptr<base::FileProxy> file_proxy(new base::FileProxy( |
| 56 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE).get())); | 56 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE).get())); |
| 57 base::FileProxy* proxy = file_proxy.get(); | 57 base::FileProxy* proxy = file_proxy.get(); |
| 58 proxy->CreateTemporary( | 58 proxy->CreateTemporary( |
| 59 base::File::FLAG_ASYNC, | 59 base::File::FLAG_ASYNC, |
| 60 base::Bind(&DidCreateTemporaryFile, callback, Passed(&file_proxy))); | 60 base::Bind(&DidCreateTemporaryFile, callback, Passed(&file_proxy))); |
| 61 } | 61 } |
| 62 | 62 |
| 63 } // namespace content | 63 } // namespace content |
| OLD | NEW |