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

Unified Diff: chrome/common/appcache/appcache_dispatcher.cc

Issue 6691002: Move AppCache common code to content and split off AppCache messages into the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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/common/appcache/appcache_dispatcher.h ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/appcache/appcache_dispatcher.cc
===================================================================
--- chrome/common/appcache/appcache_dispatcher.cc (revision 77976)
+++ chrome/common/appcache/appcache_dispatcher.cc (working copy)
@@ -1,61 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/common/appcache/appcache_dispatcher.h"
-
-#include "chrome/common/render_messages.h"
-#include "webkit/appcache/web_application_cache_host_impl.h"
-
-bool AppCacheDispatcher::OnMessageReceived(const IPC::Message& msg) {
- bool handled = true;
- IPC_BEGIN_MESSAGE_MAP(AppCacheDispatcher, msg)
- IPC_MESSAGE_HANDLER(AppCacheMsg_CacheSelected, OnCacheSelected)
- IPC_MESSAGE_HANDLER(AppCacheMsg_StatusChanged, OnStatusChanged)
- IPC_MESSAGE_HANDLER(AppCacheMsg_EventRaised, OnEventRaised)
- IPC_MESSAGE_HANDLER(AppCacheMsg_ProgressEventRaised, OnProgressEventRaised)
- IPC_MESSAGE_HANDLER(AppCacheMsg_ErrorEventRaised, OnErrorEventRaised)
- IPC_MESSAGE_HANDLER(AppCacheMsg_LogMessage, OnLogMessage)
- IPC_MESSAGE_HANDLER(AppCacheMsg_ContentBlocked, OnContentBlocked)
- IPC_MESSAGE_UNHANDLED(handled = false)
- IPC_END_MESSAGE_MAP()
- return handled;
-}
-
-void AppCacheDispatcher::OnCacheSelected(
- int host_id, const appcache::AppCacheInfo& info) {
- frontend_impl_.OnCacheSelected(host_id, info);
-}
-
-void AppCacheDispatcher::OnStatusChanged(const std::vector<int>& host_ids,
- appcache::Status status) {
- frontend_impl_.OnStatusChanged(host_ids, status);
-}
-
-void AppCacheDispatcher::OnEventRaised(const std::vector<int>& host_ids,
- appcache::EventID event_id) {
- frontend_impl_.OnEventRaised(host_ids, event_id);
-}
-
-void AppCacheDispatcher::OnProgressEventRaised(
- const std::vector<int>& host_ids,
- const GURL& url, int num_total, int num_complete) {
- frontend_impl_.OnProgressEventRaised(host_ids, url, num_total, num_complete);
-}
-
-void AppCacheDispatcher::OnErrorEventRaised(
- const std::vector<int>& host_ids,
- const std::string& message) {
- frontend_impl_.OnErrorEventRaised(host_ids, message);
-}
-
-void AppCacheDispatcher::OnLogMessage(
- int host_id, int log_level, const std::string& message) {
- frontend_impl_.OnLogMessage(
- host_id, static_cast<appcache::LogLevel>(log_level), message);
-}
-
-void AppCacheDispatcher::OnContentBlocked(int host_id,
- const GURL& manifest_url) {
- frontend_impl_.OnContentBlocked(host_id, manifest_url);
-}
« no previous file with comments | « chrome/common/appcache/appcache_dispatcher.h ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698