| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2010, 2011, 2012 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 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "web/AssociatedURLLoader.h" | 32 #include "web/AssociatedURLLoader.h" |
| 33 | 33 |
| 34 #include "core/fetch/CrossOriginAccessControl.h" | 34 #include "core/fetch/CrossOriginAccessControl.h" |
| 35 #include "core/fetch/FetchUtils.h" | 35 #include "core/fetch/FetchUtils.h" |
| 36 #include "core/loader/DocumentThreadableLoader.h" | 36 #include "core/loader/DocumentThreadableLoader.h" |
| 37 #include "core/loader/DocumentThreadableLoaderClient.h" | 37 #include "core/loader/DocumentThreadableLoaderClient.h" |
| 38 #include "core/xml/XMLHttpRequest.h" | 38 #include "core/xmlhttprequest/XMLHttpRequest.h" |
| 39 #include "platform/Timer.h" | 39 #include "platform/Timer.h" |
| 40 #include "platform/exported/WrappedResourceRequest.h" | 40 #include "platform/exported/WrappedResourceRequest.h" |
| 41 #include "platform/exported/WrappedResourceResponse.h" | 41 #include "platform/exported/WrappedResourceResponse.h" |
| 42 #include "platform/network/HTTPParsers.h" | 42 #include "platform/network/HTTPParsers.h" |
| 43 #include "platform/network/ResourceError.h" | 43 #include "platform/network/ResourceError.h" |
| 44 #include "public/platform/WebHTTPHeaderVisitor.h" | 44 #include "public/platform/WebHTTPHeaderVisitor.h" |
| 45 #include "public/platform/WebString.h" | 45 #include "public/platform/WebString.h" |
| 46 #include "public/platform/WebURLError.h" | 46 #include "public/platform/WebURLError.h" |
| 47 #include "public/platform/WebURLLoaderClient.h" | 47 #include "public/platform/WebURLLoaderClient.h" |
| 48 #include "public/platform/WebURLRequest.h" | 48 #include "public/platform/WebURLRequest.h" |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 m_loader->cancel(); | 376 m_loader->cancel(); |
| 377 } | 377 } |
| 378 | 378 |
| 379 void AssociatedURLLoader::setDefersLoading(bool defersLoading) | 379 void AssociatedURLLoader::setDefersLoading(bool defersLoading) |
| 380 { | 380 { |
| 381 if (m_loader) | 381 if (m_loader) |
| 382 m_loader->setDefersLoading(defersLoading); | 382 m_loader->setDefersLoading(defersLoading); |
| 383 } | 383 } |
| 384 | 384 |
| 385 } // namespace blink | 385 } // namespace blink |
| OLD | NEW |