| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/appcache/appcache_dispatcher.h" | 5 #include "content/common/appcache/appcache_dispatcher.h" |
| 6 | 6 |
| 7 #include "chrome/common/render_messages.h" | 7 #include "content/common/appcache_messages.h" |
| 8 #include "webkit/appcache/web_application_cache_host_impl.h" | 8 #include "webkit/appcache/web_application_cache_host_impl.h" |
| 9 | 9 |
| 10 bool AppCacheDispatcher::OnMessageReceived(const IPC::Message& msg) { | 10 bool AppCacheDispatcher::OnMessageReceived(const IPC::Message& msg) { |
| 11 bool handled = true; | 11 bool handled = true; |
| 12 IPC_BEGIN_MESSAGE_MAP(AppCacheDispatcher, msg) | 12 IPC_BEGIN_MESSAGE_MAP(AppCacheDispatcher, msg) |
| 13 IPC_MESSAGE_HANDLER(AppCacheMsg_CacheSelected, OnCacheSelected) | 13 IPC_MESSAGE_HANDLER(AppCacheMsg_CacheSelected, OnCacheSelected) |
| 14 IPC_MESSAGE_HANDLER(AppCacheMsg_StatusChanged, OnStatusChanged) | 14 IPC_MESSAGE_HANDLER(AppCacheMsg_StatusChanged, OnStatusChanged) |
| 15 IPC_MESSAGE_HANDLER(AppCacheMsg_EventRaised, OnEventRaised) | 15 IPC_MESSAGE_HANDLER(AppCacheMsg_EventRaised, OnEventRaised) |
| 16 IPC_MESSAGE_HANDLER(AppCacheMsg_ProgressEventRaised, OnProgressEventRaised) | 16 IPC_MESSAGE_HANDLER(AppCacheMsg_ProgressEventRaised, OnProgressEventRaised) |
| 17 IPC_MESSAGE_HANDLER(AppCacheMsg_ErrorEventRaised, OnErrorEventRaised) | 17 IPC_MESSAGE_HANDLER(AppCacheMsg_ErrorEventRaised, OnErrorEventRaised) |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 void AppCacheDispatcher::OnLogMessage( | 52 void AppCacheDispatcher::OnLogMessage( |
| 53 int host_id, int log_level, const std::string& message) { | 53 int host_id, int log_level, const std::string& message) { |
| 54 frontend_impl_.OnLogMessage( | 54 frontend_impl_.OnLogMessage( |
| 55 host_id, static_cast<appcache::LogLevel>(log_level), message); | 55 host_id, static_cast<appcache::LogLevel>(log_level), message); |
| 56 } | 56 } |
| 57 | 57 |
| 58 void AppCacheDispatcher::OnContentBlocked(int host_id, | 58 void AppCacheDispatcher::OnContentBlocked(int host_id, |
| 59 const GURL& manifest_url) { | 59 const GURL& manifest_url) { |
| 60 frontend_impl_.OnContentBlocked(host_id, manifest_url); | 60 frontend_impl_.OnContentBlocked(host_id, manifest_url); |
| 61 } | 61 } |
| OLD | NEW |