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

Unified Diff: chrome/browser/appcache/appcache_frontend_proxy.cc

Issue 3009005: Chrome side of changes required to populate appcache resource list.... (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
Index: chrome/browser/appcache/appcache_frontend_proxy.cc
===================================================================
--- chrome/browser/appcache/appcache_frontend_proxy.cc (revision 53710)
+++ chrome/browser/appcache/appcache_frontend_proxy.cc (working copy)
@@ -6,9 +6,9 @@
#include "chrome/common/render_messages.h"
-void AppCacheFrontendProxy::OnCacheSelected(int host_id, int64 cache_id ,
- appcache::Status status) {
- sender_->Send(new AppCacheMsg_CacheSelected(host_id, cache_id, status));
+void AppCacheFrontendProxy::OnCacheSelected(
+ int host_id, const appcache::AppCacheInfo& info) {
+ sender_->Send(new AppCacheMsg_CacheSelected(host_id, info));
}
void AppCacheFrontendProxy::OnStatusChanged(const std::vector<int>& host_ids,

Powered by Google App Engine
This is Rietveld 408576698