OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "chrome/browser/automation/url_request_mock_net_error_job.h" | 5 #include "chrome/browser/automation/url_request_mock_net_error_job.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "net/base/net_util.h" | 10 #include "net/base/net_util.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 MockInfo mock_info = iter->second; | 48 MockInfo mock_info = iter->second; |
49 | 49 |
50 // URLRequestMockNetErrorJob derives from URLRequestFileJob. We pass a | 50 // URLRequestMockNetErrorJob derives from URLRequestFileJob. We pass a |
51 // FilePath so that the URLRequestFileJob methods will do the loading from | 51 // FilePath so that the URLRequestFileJob methods will do the loading from |
52 // the files. | 52 // the files. |
53 std::wstring file_url(L"file:///"); | 53 std::wstring file_url(L"file:///"); |
54 file_url.append(mock_info.base); | 54 file_url.append(mock_info.base); |
55 file_url.append(UTF8ToWide(url.path())); | 55 file_url.append(UTF8ToWide(url.path())); |
56 // Convert the file:/// URL to a path on disk. | 56 // Convert the file:/// URL to a path on disk. |
57 std::wstring file_path; | 57 FilePath file_path; |
58 net::FileURLToFilePath(GURL(WideToUTF8(file_url)), &file_path); | 58 net::FileURLToFilePath(GURL(WideToUTF8(file_url)), &file_path); |
59 return new URLRequestMockNetErrorJob(request, mock_info.errors, | 59 return new URLRequestMockNetErrorJob(request, mock_info.errors, |
60 mock_info.ssl_cert, | 60 mock_info.ssl_cert, |
61 FilePath::FromWStringHack(file_path)); | 61 file_path); |
62 } | 62 } |
63 | 63 |
64 URLRequestMockNetErrorJob::URLRequestMockNetErrorJob(URLRequest* request, | 64 URLRequestMockNetErrorJob::URLRequestMockNetErrorJob(URLRequest* request, |
65 const std::vector<int>& errors, net::X509Certificate* cert, | 65 const std::vector<int>& errors, net::X509Certificate* cert, |
66 const FilePath& file_path) | 66 const FilePath& file_path) |
67 : URLRequestMockHTTPJob(request, file_path), | 67 : URLRequestMockHTTPJob(request, file_path), |
68 errors_(errors), | 68 errors_(errors), |
69 ssl_cert_(cert) { | 69 ssl_cert_(cert) { |
70 } | 70 } |
71 | 71 |
(...skipping 18 matching lines...) Expand all Loading... |
90 ssl_cert_.get()); | 90 ssl_cert_.get()); |
91 } else { | 91 } else { |
92 NotifyStartError(URLRequestStatus(URLRequestStatus::FAILED, error)); | 92 NotifyStartError(URLRequestStatus(URLRequestStatus::FAILED, error)); |
93 } | 93 } |
94 } | 94 } |
95 } | 95 } |
96 | 96 |
97 void URLRequestMockNetErrorJob::ContinueDespiteLastError() { | 97 void URLRequestMockNetErrorJob::ContinueDespiteLastError() { |
98 Start(); | 98 Start(); |
99 } | 99 } |
OLD | NEW |