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

Unified Diff: webkit/browser/appcache/view_appcache_internals_job.cc

Issue 22314003: NavigationController prototype Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: NavController prototype - chrome side Created 7 years, 3 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 | « webkit/browser/appcache/appcache_url_request_job.cc ('k') | webkit/browser/blob/blob_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/appcache/view_appcache_internals_job.cc
diff --git a/webkit/browser/appcache/view_appcache_internals_job.cc b/webkit/browser/appcache/view_appcache_internals_job.cc
index 22bb1e7d28521e8a66d58acc0efae67220912051..f04e4c56bdd25f10e900c5bfd0f16c3b03309b19 100644
--- a/webkit/browser/appcache/view_appcache_internals_job.cc
+++ b/webkit/browser/appcache/view_appcache_internals_job.cc
@@ -185,6 +185,10 @@ std::string FormFlagsString(const AppCacheResourceInfo& info) {
str.append("Explicit, ");
if (info.is_foreign)
str.append("Foreign, ");
+ if (info.is_executable)
+ str.append("Executable, ");
+ if (str.length() > 2)
+ str = str.substr(0, str.length() - 2);
return str;
}
« no previous file with comments | « webkit/browser/appcache/appcache_url_request_job.cc ('k') | webkit/browser/blob/blob_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698