Index: webkit/glue/weburlloader_impl.cc |
=================================================================== |
--- webkit/glue/weburlloader_impl.cc (revision 45253) |
+++ webkit/glue/weburlloader_impl.cc (working copy) |
@@ -124,8 +124,14 @@ |
return ResourceType::OBJECT; |
case WebURLRequest::TargetIsMedia: |
return ResourceType::MEDIA; |
+ // TODO(michaeln): uncomment the following cases and the NOTREACHED() call |
+ // when the webkit API has been committed and these constants are defined. |
+ // case WebURLRequest::TargetIsWorker: |
+ // return ResourceType::WORKER; |
+ // case WebURLRequest::TargetIsSharedWorker: |
+ // return ResourceType::SHARED_WORKER; |
default: |
- NOTREACHED(); |
+ // NOTREACHED(); |
return ResourceType::SUB_RESOURCE; |
} |
} |