Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Unified Diff: webkit/glue/weburlloader_impl.cc

Issue 1666002: Add ResourceRequest target types for worker and shared workers.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« webkit/glue/resource_type.h ('K') | « webkit/glue/resource_type.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
}
« webkit/glue/resource_type.h ('K') | « webkit/glue/resource_type.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698