| 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 12 matching lines...) Expand all Loading... |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #include "config.h" | 30 #include "config.h" |
| 31 #include "core/fetch/ResourceLoader.h" | 31 #include "core/fetch/ResourceLoader.h" |
| 32 | 32 |
| 33 #include "core/fetch/CSSStyleSheetResource.h" | |
| 34 #include "core/fetch/Resource.h" | 33 #include "core/fetch/Resource.h" |
| 35 #include "core/fetch/ResourceFetcher.h" | 34 #include "core/fetch/ResourceFetcher.h" |
| 36 #include "core/fetch/ResourcePtr.h" | 35 #include "core/fetch/ResourcePtr.h" |
| 37 #include "platform/Logging.h" | 36 #include "platform/Logging.h" |
| 38 #include "platform/SharedBuffer.h" | 37 #include "platform/SharedBuffer.h" |
| 39 #include "platform/ThreadedDataReceiver.h" | 38 #include "platform/ThreadedDataReceiver.h" |
| 40 #include "platform/exported/WrappedResourceRequest.h" | 39 #include "platform/exported/WrappedResourceRequest.h" |
| 41 #include "platform/exported/WrappedResourceResponse.h" | 40 #include "platform/exported/WrappedResourceResponse.h" |
| 42 #include "platform/network/ResourceError.h" | 41 #include "platform/network/ResourceError.h" |
| 43 #include "public/platform/Platform.h" | 42 #include "public/platform/Platform.h" |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 didFinishLoading(0, monotonicallyIncreasingTime(), encodedDataLength); | 535 didFinishLoading(0, monotonicallyIncreasingTime(), encodedDataLength); |
| 537 } | 536 } |
| 538 | 537 |
| 539 ResourceRequest& ResourceLoader::applyOptions(ResourceRequest& request) const | 538 ResourceRequest& ResourceLoader::applyOptions(ResourceRequest& request) const |
| 540 { | 539 { |
| 541 request.setAllowStoredCredentials(m_options.allowCredentials == AllowStoredC
redentials); | 540 request.setAllowStoredCredentials(m_options.allowCredentials == AllowStoredC
redentials); |
| 542 return request; | 541 return request; |
| 543 } | 542 } |
| 544 | 543 |
| 545 } | 544 } |
| OLD | NEW |