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

Unified Diff: webkit/appcache/appcache_host.cc

Issue 2910007: Report an error message when an update job results in an error. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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/appcache/appcache_group_unittest.cc ('k') | webkit/appcache/appcache_host_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_host.cc
===================================================================
--- webkit/appcache/appcache_host.cc (revision 52160)
+++ webkit/appcache/appcache_host.cc (working copy)
@@ -317,7 +317,7 @@
DCHECK(new_master_entry_url_.is_empty());
AppCacheGroup* owing_group = cache->owning_group();
const char* kFormatString =
- "Document was loaded from appcache with manifest %s";
+ "Document was loaded from Application Cache with manifest %s";
frontend_->OnLogMessage(
host_id_, LOG_INFO,
StringPrintf(
@@ -336,8 +336,8 @@
DCHECK(!group->is_obsolete());
DCHECK(new_master_entry_url_.is_valid());
const char* kFormatString = group->HasCache() ?
- "Adding master entry to appcache with manifest %s" :
- "Creating appcache with manifest %s";
+ "Adding master entry to Application Cache with manifest %s" :
+ "Creating Application Cache with manifest %s";
frontend_->OnLogMessage(
host_id_, LOG_INFO,
StringPrintf(kFormatString, group->manifest_url().spec().c_str()));
« no previous file with comments | « webkit/appcache/appcache_group_unittest.cc ('k') | webkit/appcache/appcache_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698