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 // For loading files, we make use of overlapped i/o to ensure that reading from | 5 // For loading files, we make use of overlapped i/o to ensure that reading from |
6 // the filesystem (e.g., a network filesystem) does not block the calling | 6 // the filesystem (e.g., a network filesystem) does not block the calling |
7 // thread. An alternative approach would be to use a background thread or pool | 7 // thread. An alternative approach would be to use a background thread or pool |
8 // of threads, but it seems better to leverage the operating system's ability | 8 // of threads, but it seems better to leverage the operating system's ability |
9 // to do background file reads for us. | 9 // to do background file reads for us. |
10 // | 10 // |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 return false; | 231 return false; |
232 | 232 |
233 std::wstring new_path = file_path_.value(); | 233 std::wstring new_path = file_path_.value(); |
234 bool resolved; | 234 bool resolved; |
235 resolved = file_util::ResolveShortcut(&new_path); | 235 resolved = file_util::ResolveShortcut(&new_path); |
236 | 236 |
237 // If shortcut is not resolved succesfully, do not redirect. | 237 // If shortcut is not resolved succesfully, do not redirect. |
238 if (!resolved) | 238 if (!resolved) |
239 return false; | 239 return false; |
240 | 240 |
241 *location = net::FilePathToFileURL(new_path); | 241 *location = net::FilePathToFileURL(FilePath(new_path)); |
242 *http_status_code = 301; | 242 *http_status_code = 301; |
243 return true; | 243 return true; |
244 #else | 244 #else |
245 return false; | 245 return false; |
246 #endif | 246 #endif |
247 } | 247 } |
OLD | NEW |