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

Unified Diff: chrome/browser/appcache/appcache_frontend_proxy.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 | « chrome/browser/appcache/appcache_frontend_proxy.h ('k') | chrome/common/appcache/appcache_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/appcache/appcache_frontend_proxy.cc
===================================================================
--- chrome/browser/appcache/appcache_frontend_proxy.cc (revision 52160)
+++ chrome/browser/appcache/appcache_frontend_proxy.cc (working copy)
@@ -29,6 +29,13 @@
host_ids, url, num_total, num_complete));
}
+void AppCacheFrontendProxy::OnErrorEventRaised(
+ const std::vector<int>& host_ids,
+ const std::string& message) {
+ sender_->Send(new AppCacheMsg_ErrorEventRaised(
+ host_ids, message));
+}
+
void AppCacheFrontendProxy::OnLogMessage(int host_id,
appcache::LogLevel log_level,
const std::string& message) {
« no previous file with comments | « chrome/browser/appcache/appcache_frontend_proxy.h ('k') | chrome/common/appcache/appcache_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698