| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2010, 2011 Apple Inc. All rights reserved. |
| 3 * (C) 2007 Graham Dennis (graham.dennis@gmail.com) | 3 * (C) 2007 Graham Dennis (graham.dennis@gmail.com) |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 } | 526 } |
| 527 didFinishLoading(0, monotonicallyIncreasingTime(), encodedDataLength); | 527 didFinishLoading(0, monotonicallyIncreasingTime(), encodedDataLength); |
| 528 } | 528 } |
| 529 | 529 |
| 530 ResourceRequest& ResourceLoader::applyOptions(ResourceRequest& request) const | 530 ResourceRequest& ResourceLoader::applyOptions(ResourceRequest& request) const |
| 531 { | 531 { |
| 532 request.setAllowStoredCredentials(m_options.allowCredentials == AllowStoredC
redentials); | 532 request.setAllowStoredCredentials(m_options.allowCredentials == AllowStoredC
redentials); |
| 533 return request; | 533 return request; |
| 534 } | 534 } |
| 535 | 535 |
| 536 } | 536 } // namespace blink |
| OLD | NEW |