OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "webkit/browser/fileapi/file_system_file_stream_reader.h" | 5 #include "storage/browser/fileapi/file_system_file_stream_reader.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/run_loop.h" | 12 #include "base/run_loop.h" |
13 #include "content/public/test/async_file_test_helper.h" | 13 #include "content/public/test/async_file_test_helper.h" |
14 #include "content/public/test/test_file_system_context.h" | 14 #include "content/public/test/test_file_system_context.h" |
15 #include "net/base/io_buffer.h" | 15 #include "net/base/io_buffer.h" |
16 #include "net/base/net_errors.h" | 16 #include "net/base/net_errors.h" |
17 #include "net/base/test_completion_callback.h" | 17 #include "net/base/test_completion_callback.h" |
| 18 #include "storage/browser/fileapi/external_mount_points.h" |
| 19 #include "storage/browser/fileapi/file_system_context.h" |
| 20 #include "storage/browser/fileapi/file_system_file_util.h" |
18 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
19 #include "webkit/browser/fileapi/external_mount_points.h" | |
20 #include "webkit/browser/fileapi/file_system_context.h" | |
21 #include "webkit/browser/fileapi/file_system_file_util.h" | |
22 | 22 |
23 using content::AsyncFileTestHelper; | 23 using content::AsyncFileTestHelper; |
24 using storage::FileSystemContext; | 24 using storage::FileSystemContext; |
25 using storage::FileSystemFileStreamReader; | 25 using storage::FileSystemFileStreamReader; |
26 using storage::FileSystemType; | 26 using storage::FileSystemType; |
27 using storage::FileSystemURL; | 27 using storage::FileSystemURL; |
28 | 28 |
29 namespace content { | 29 namespace content { |
30 | 30 |
31 namespace { | 31 namespace { |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 new net::IOBufferWithSize(kTestDataSize)); | 263 new net::IOBufferWithSize(kTestDataSize)); |
264 int rv = reader->Read(buf.get(), buf->size(), base::Bind(&NeverCalled)); | 264 int rv = reader->Read(buf.get(), buf->size(), base::Bind(&NeverCalled)); |
265 ASSERT_TRUE(rv == net::ERR_IO_PENDING || rv >= 0); | 265 ASSERT_TRUE(rv == net::ERR_IO_PENDING || rv >= 0); |
266 | 266 |
267 // Delete immediately. | 267 // Delete immediately. |
268 // Should not crash; nor should NeverCalled be callback. | 268 // Should not crash; nor should NeverCalled be callback. |
269 reader.reset(); | 269 reader.reset(); |
270 } | 270 } |
271 | 271 |
272 } // namespace content | 272 } // namespace content |
OLD | NEW |