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_url_request_job.h" | 5 #include "webkit/browser/fileapi/file_system_url_request_job.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/file_util.h" | |
11 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/files/file_util.h" |
12 #include "base/files/scoped_temp_dir.h" | 12 #include "base/files/scoped_temp_dir.h" |
13 #include "base/format_macros.h" | 13 #include "base/format_macros.h" |
14 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/message_loop/message_loop.h" | 16 #include "base/message_loop/message_loop.h" |
17 #include "base/message_loop/message_loop_proxy.h" | 17 #include "base/message_loop/message_loop_proxy.h" |
18 #include "base/rand_util.h" | 18 #include "base/rand_util.h" |
19 #include "base/run_loop.h" | 19 #include "base/run_loop.h" |
20 #include "base/strings/string_piece.h" | 20 #include "base/strings/string_piece.h" |
21 #include "base/strings/stringprintf.h" | 21 #include "base/strings/stringprintf.h" |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 EXPECT_TRUE(delegate_->request_failed()); | 459 EXPECT_TRUE(delegate_->request_failed()); |
460 EXPECT_EQ(net::ERR_FILE_NOT_FOUND, request_->status().error()); | 460 EXPECT_EQ(net::ERR_FILE_NOT_FOUND, request_->status().error()); |
461 | 461 |
462 ASSERT_FALSE( | 462 ASSERT_FALSE( |
463 storage::ExternalMountPoints::GetSystemInstance()->RevokeFileSystem( | 463 storage::ExternalMountPoints::GetSystemInstance()->RevokeFileSystem( |
464 kValidExternalMountPoint)); | 464 kValidExternalMountPoint)); |
465 } | 465 } |
466 | 466 |
467 } // namespace | 467 } // namespace |
468 } // namespace content | 468 } // namespace content |
OLD | NEW |