Chromium Code Reviews| Index: webkit/appcache/appcache_update_job.cc |
| =================================================================== |
| --- webkit/appcache/appcache_update_job.cc (revision 193265) |
| +++ webkit/appcache/appcache_update_job.cc (working copy) |
| @@ -892,7 +892,10 @@ |
| manifest.intercept_namespaces; |
| for (std::vector<Namespace>::const_iterator it = intercepts.begin(); |
| it != intercepts.end(); ++it) { |
| - AddUrlToFileList(it->target_url, AppCacheEntry::INTERCEPT); |
| + int flags = AppCacheEntry::INTERCEPT; |
| + if (it->is_executable) |
|
Greg Billock
2013/04/10 23:25:30
Want to check flag here as well? Allows turn-off a
michaeln
2013/04/10 23:47:59
Don't think we need to here. This logic picks up t
|
| + flags |= AppCacheEntry::EXECUTABLE; |
| + AddUrlToFileList(it->target_url, flags); |
| } |
| const std::vector<Namespace>& fallbacks = |