| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authos. All rights reserved. | 1 // Copyright (c) 2009 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 "base/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/pickle.h" | 6 #include "base/pickle.h" |
| 7 #include "base/thread.h" | 7 #include "base/thread.h" |
| 8 #include "base/waitable_event.h" | 8 #include "base/waitable_event.h" |
| 9 #include "net/url_request/url_request.h" | 9 #include "net/url_request/url_request.h" |
| 10 #include "net/url_request/url_request_error_job.h" | 10 #include "net/url_request/url_request_error_job.h" |
| 11 #include "net/base/io_buffer.h" | 11 #include "net/base/io_buffer.h" |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 TEST_F(AppCacheURLRequestJobTest, CancelRequest) { | 736 TEST_F(AppCacheURLRequestJobTest, CancelRequest) { |
| 737 RunTestOnIOThread(&AppCacheURLRequestJobTest::CancelRequest); | 737 RunTestOnIOThread(&AppCacheURLRequestJobTest::CancelRequest); |
| 738 } | 738 } |
| 739 | 739 |
| 740 TEST_F(AppCacheURLRequestJobTest, CancelRequestWithIOPending) { | 740 TEST_F(AppCacheURLRequestJobTest, CancelRequestWithIOPending) { |
| 741 RunTestOnIOThread(&AppCacheURLRequestJobTest::CancelRequestWithIOPending); | 741 RunTestOnIOThread(&AppCacheURLRequestJobTest::CancelRequestWithIOPending); |
| 742 } | 742 } |
| 743 | 743 |
| 744 } // namespace appcache | 744 } // namespace appcache |
| 745 | 745 |
| OLD | NEW |