#ifndef CONTENT_COMMON_APPCACHE_APPCACHE_DISPATCHER_H_
#define CONTENT_COMMON_APPCACHE_APPCACHE_DISPATCHER_H_
#include <string>
#include <vector>
#include "content/common/appcache/appcache_backend_proxy.h"
#include "ipc/ipc_listener.h"
#include "webkit/appcache/appcache_frontend_impl.h"
class AppCacheDispatcher : public IPC::Listener {
public:
explicit AppCacheDispatcher(IPC::Sender* sender) : backend_proxy_(sender) {}
AppCacheBackendProxy* backend_proxy() { return &backend_proxy_; }
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
private:
void OnCacheSelected(int host_id, const appcache::AppCacheInfo& info);
void OnStatusChanged(const std::vector<int>& host_ids,
appcache::Status status);
void OnEventRaised(const std::vector<int>& host_ids,
appcache::EventID event_id);
void OnProgressEventRaised(const std::vector<int>& host_ids,
const GURL& url, int num_total, int num_complete);
void OnErrorEventRaised(const std::vector<int>& host_ids,
const std::string& message);
void OnLogMessage(int host_id, int log_level, const std::string& message);
void OnContentBlocked(int host_id,
const GURL& manifest_url);
AppCacheBackendProxy backend_proxy_;
appcache::AppCacheFrontendImpl frontend_impl_;
};
#endif