| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 BlobRegistry::registerStreamURL(executionContext.securityOrigin(), m_url
ForReading, stream->url()); | 98 BlobRegistry::registerStreamURL(executionContext.securityOrigin(), m_url
ForReading, stream->url()); |
| 99 } | 99 } |
| 100 | 100 |
| 101 // Construct and load the request. | 101 // Construct and load the request. |
| 102 ResourceRequest request(m_urlForReading); | 102 ResourceRequest request(m_urlForReading); |
| 103 request.setHTTPMethod("GET"); | 103 request.setHTTPMethod("GET"); |
| 104 if (m_hasRange) | 104 if (m_hasRange) |
| 105 request.setHTTPHeaderField("Range", AtomicString(String::format("bytes=%
d-%d", m_rangeStart, m_rangeEnd))); | 105 request.setHTTPHeaderField("Range", AtomicString(String::format("bytes=%
d-%d", m_rangeStart, m_rangeEnd))); |
| 106 | 106 |
| 107 ThreadableLoaderOptions options; | 107 ThreadableLoaderOptions options; |
| 108 options.sniffContent = DoNotSniffContent; | |
| 109 options.preflightPolicy = ConsiderPreflight; | 108 options.preflightPolicy = ConsiderPreflight; |
| 110 options.allowCredentials = AllowStoredCredentials; | |
| 111 options.crossOriginRequestPolicy = DenyCrossOriginRequests; | 109 options.crossOriginRequestPolicy = DenyCrossOriginRequests; |
| 112 // FIXME: Is there a directive to which this load should be subject? | 110 // FIXME: Is there a directive to which this load should be subject? |
| 113 options.contentSecurityPolicyEnforcement = DoNotEnforceContentSecurityPolicy
; | 111 options.contentSecurityPolicyEnforcement = DoNotEnforceContentSecurityPolicy
; |
| 114 // Use special initiator to hide the request from the inspector. | 112 // Use special initiator to hide the request from the inspector. |
| 115 options.initiator = FetchInitiatorTypeNames::internal; | 113 options.initiator = FetchInitiatorTypeNames::internal; |
| 116 | 114 |
| 115 ResourceLoaderOptions resourceLoaderOptions; |
| 116 resourceLoaderOptions.allowCredentials = AllowStoredCredentials; |
| 117 |
| 117 if (m_client) | 118 if (m_client) |
| 118 m_loader = ThreadableLoader::create(executionContext, this, request, opt
ions); | 119 m_loader = ThreadableLoader::create(executionContext, this, request, opt
ions, resourceLoaderOptions); |
| 119 else | 120 else |
| 120 ThreadableLoader::loadResourceSynchronously(executionContext, request, *
this, options); | 121 ThreadableLoader::loadResourceSynchronously(executionContext, request, *
this, options, resourceLoaderOptions); |
| 121 } | 122 } |
| 122 | 123 |
| 123 void FileReaderLoader::start(ExecutionContext* executionContext, PassRefPtr<Blob
DataHandle> blobData) | 124 void FileReaderLoader::start(ExecutionContext* executionContext, PassRefPtr<Blob
DataHandle> blobData) |
| 124 { | 125 { |
| 125 ASSERT(executionContext); | 126 ASSERT(executionContext); |
| 126 m_urlForReadingIsStream = false; | 127 m_urlForReadingIsStream = false; |
| 127 startInternal(*executionContext, 0, blobData); | 128 startInternal(*executionContext, 0, blobData); |
| 128 } | 129 } |
| 129 | 130 |
| 130 void FileReaderLoader::start(ExecutionContext* executionContext, const Stream& s
tream, unsigned readSize) | 131 void FileReaderLoader::start(ExecutionContext* executionContext, const Stream& s
tream, unsigned readSize) |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 m_stringResult = builder.toString(); | 397 m_stringResult = builder.toString(); |
| 397 } | 398 } |
| 398 | 399 |
| 399 void FileReaderLoader::setEncoding(const String& encoding) | 400 void FileReaderLoader::setEncoding(const String& encoding) |
| 400 { | 401 { |
| 401 if (!encoding.isEmpty()) | 402 if (!encoding.isEmpty()) |
| 402 m_encoding = WTF::TextEncoding(encoding); | 403 m_encoding = WTF::TextEncoding(encoding); |
| 403 } | 404 } |
| 404 | 405 |
| 405 } // namespace WebCore | 406 } // namespace WebCore |
| OLD | NEW |