OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 // An implementation of WebURLLoader in terms of ResourceLoaderBridge. | 5 // An implementation of WebURLLoader in terms of ResourceLoaderBridge. |
6 | 6 |
7 #include "webkit/glue/weburlloader_impl.h" | 7 #include "webkit/glue/weburlloader_impl.h" |
8 | 8 |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 case WebURLRequest::TargetIsScript: | 117 case WebURLRequest::TargetIsScript: |
118 return ResourceType::SCRIPT; | 118 return ResourceType::SCRIPT; |
119 case WebURLRequest::TargetIsFontResource: | 119 case WebURLRequest::TargetIsFontResource: |
120 return ResourceType::FONT_RESOURCE; | 120 return ResourceType::FONT_RESOURCE; |
121 case WebURLRequest::TargetIsImage: | 121 case WebURLRequest::TargetIsImage: |
122 return ResourceType::IMAGE; | 122 return ResourceType::IMAGE; |
123 case WebURLRequest::TargetIsObject: | 123 case WebURLRequest::TargetIsObject: |
124 return ResourceType::OBJECT; | 124 return ResourceType::OBJECT; |
125 case WebURLRequest::TargetIsMedia: | 125 case WebURLRequest::TargetIsMedia: |
126 return ResourceType::MEDIA; | 126 return ResourceType::MEDIA; |
| 127 // TODO(michaeln): uncomment the following cases and the NOTREACHED() call |
| 128 // when the webkit API has been committed and these constants are defined. |
| 129 // case WebURLRequest::TargetIsWorker: |
| 130 // return ResourceType::WORKER; |
| 131 // case WebURLRequest::TargetIsSharedWorker: |
| 132 // return ResourceType::SHARED_WORKER; |
127 default: | 133 default: |
128 NOTREACHED(); | 134 // NOTREACHED(); |
129 return ResourceType::SUB_RESOURCE; | 135 return ResourceType::SUB_RESOURCE; |
130 } | 136 } |
131 } | 137 } |
132 | 138 |
133 // Extracts the information from a data: url. | 139 // Extracts the information from a data: url. |
134 bool GetInfoFromDataURL(const GURL& url, | 140 bool GetInfoFromDataURL(const GURL& url, |
135 ResourceLoaderBridge::ResponseInfo* info, | 141 ResourceLoaderBridge::ResponseInfo* info, |
136 std::string* data, URLRequestStatus* status) { | 142 std::string* data, URLRequestStatus* status) { |
137 std::string mime_type; | 143 std::string mime_type; |
138 std::string charset; | 144 std::string charset; |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
624 | 630 |
625 void WebURLLoaderImpl::cancel() { | 631 void WebURLLoaderImpl::cancel() { |
626 context_->Cancel(); | 632 context_->Cancel(); |
627 } | 633 } |
628 | 634 |
629 void WebURLLoaderImpl::setDefersLoading(bool value) { | 635 void WebURLLoaderImpl::setDefersLoading(bool value) { |
630 context_->SetDefersLoading(value); | 636 context_->SetDefersLoading(value); |
631 } | 637 } |
632 | 638 |
633 } // namespace webkit_glue | 639 } // namespace webkit_glue |
OLD | NEW |