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

Unified Diff: webkit/glue/resource_type.h

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
« no previous file with comments | « chrome/browser/renderer_host/resource_dispatcher_host.cc ('k') | webkit/glue/weburlloader_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/resource_type.h
===================================================================
--- webkit/glue/resource_type.h (revision 45253)
+++ webkit/glue/resource_type.h (working copy)
@@ -20,6 +20,8 @@
OBJECT, // an object (or embed) tag for a plugin,
// or a resource that a plugin requested.
MEDIA, // a media resource.
+ SHARED_WORKER, // the main resource of a shared worker.
Andrew T Wilson (Slow) 2010/04/25 17:13:15 When workers perform XHR or load scripts like impo
michaeln 2010/04/26 21:51:53 I think right now all resources loaded by workers
+ WORKER, // the main resource of a dedicated worker.
LAST_TYPE // Place holder so we don't need to change ValidType
// everytime.
};
@@ -36,12 +38,17 @@
return type == MAIN_FRAME || type == SUB_FRAME;
}
+ static bool IsSharedWorker(ResourceType::Type type) {
+ return type == SHARED_WORKER;
+ }
+
static bool IsSubresource(ResourceType::Type type) {
return type == STYLESHEET ||
type == SCRIPT ||
type == IMAGE ||
type == FONT_RESOURCE ||
- type == SUB_RESOURCE;
+ type == SUB_RESOURCE ||
+ type == WORKER;
}
private:
« no previous file with comments | « chrome/browser/renderer_host/resource_dispatcher_host.cc ('k') | webkit/glue/weburlloader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698