| 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 <stdint.h> | 5 #include <stdint.h> |
| 6 #include <string> | 6 #include <string> |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
| 11 #include "base/files/scoped_temp_dir.h" | 11 #include "base/files/scoped_temp_dir.h" |
| 12 #include "base/format_macros.h" | 12 #include "base/format_macros.h" |
| 13 #include "base/location.h" | 13 #include "base/location.h" |
| 14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.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/run_loop.h" | 17 #include "base/run_loop.h" |
| 17 #include "base/single_thread_task_runner.h" | 18 #include "base/single_thread_task_runner.h" |
| 18 #include "base/strings/string_piece.h" | 19 #include "base/strings/string_piece.h" |
| 19 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
| 20 #include "base/threading/thread_task_runner_handle.h" | 21 #include "base/threading/thread_task_runner_handle.h" |
| 21 #include "build/build_config.h" | 22 #include "build/build_config.h" |
| 22 #include "net/base/net_errors.h" | 23 #include "net/base/net_errors.h" |
| 23 #include "net/base/request_priority.h" | 24 #include "net/base/request_priority.h" |
| 24 #include "net/http/http_request_headers.h" | 25 #include "net/http/http_request_headers.h" |
| 25 #include "net/traffic_annotation/network_traffic_annotation_test_helper.h" | 26 #include "net/traffic_annotation/network_traffic_annotation_test_helper.h" |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 ASSERT_FALSE(request_->is_pending()); | 450 ASSERT_FALSE(request_->is_pending()); |
| 450 EXPECT_EQ(net::ERR_FILE_NOT_FOUND, delegate_->request_status()); | 451 EXPECT_EQ(net::ERR_FILE_NOT_FOUND, delegate_->request_status()); |
| 451 | 452 |
| 452 ASSERT_FALSE( | 453 ASSERT_FALSE( |
| 453 storage::ExternalMountPoints::GetSystemInstance()->RevokeFileSystem( | 454 storage::ExternalMountPoints::GetSystemInstance()->RevokeFileSystem( |
| 454 kValidExternalMountPoint)); | 455 kValidExternalMountPoint)); |
| 455 } | 456 } |
| 456 | 457 |
| 457 } // namespace | 458 } // namespace |
| 458 } // namespace content | 459 } // namespace content |
| OLD | NEW |