| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/appcache/appcache_dispatcher.h" |
| 6 | 6 |
| 7 #include "chrome/common/render_messages.h" | 7 #include "chrome/common/render_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_LogMessage, OnLogMessage) |
| 17 IPC_MESSAGE_HANDLER(AppCacheMsg_ContentBlocked, OnContentBlocked) | 18 IPC_MESSAGE_HANDLER(AppCacheMsg_ContentBlocked, OnContentBlocked) |
| 18 IPC_MESSAGE_UNHANDLED(handled = false) | 19 IPC_MESSAGE_UNHANDLED(handled = false) |
| 19 IPC_END_MESSAGE_MAP() | 20 IPC_END_MESSAGE_MAP() |
| 20 return handled; | 21 return handled; |
| 21 } | 22 } |
| 22 | 23 |
| 23 void AppCacheDispatcher::OnCacheSelected(int host_id, int64 cache_id, | 24 void AppCacheDispatcher::OnCacheSelected(int host_id, int64 cache_id, |
| 24 appcache::Status status) { | 25 appcache::Status status) { |
| 25 frontend_impl_.OnCacheSelected(host_id, cache_id, status); | 26 frontend_impl_.OnCacheSelected(host_id, cache_id, status); |
| 26 } | 27 } |
| 27 | 28 |
| 28 void AppCacheDispatcher::OnStatusChanged(const std::vector<int>& host_ids, | 29 void AppCacheDispatcher::OnStatusChanged(const std::vector<int>& host_ids, |
| 29 appcache::Status status) { | 30 appcache::Status status) { |
| 30 frontend_impl_.OnStatusChanged(host_ids, status); | 31 frontend_impl_.OnStatusChanged(host_ids, status); |
| 31 } | 32 } |
| 32 | 33 |
| 33 void AppCacheDispatcher::OnEventRaised(const std::vector<int>& host_ids, | 34 void AppCacheDispatcher::OnEventRaised(const std::vector<int>& host_ids, |
| 34 appcache::EventID event_id) { | 35 appcache::EventID event_id) { |
| 35 frontend_impl_.OnEventRaised(host_ids, event_id); | 36 frontend_impl_.OnEventRaised(host_ids, event_id); |
| 36 } | 37 } |
| 37 | 38 |
| 38 void AppCacheDispatcher::OnProgressEventRaised( | 39 void AppCacheDispatcher::OnProgressEventRaised( |
| 39 const std::vector<int>& host_ids, | 40 const std::vector<int>& host_ids, |
| 40 const GURL& url, int num_total, int num_complete) { | 41 const GURL& url, int num_total, int num_complete) { |
| 41 frontend_impl_.OnProgressEventRaised(host_ids, url, num_total, num_complete); | 42 frontend_impl_.OnProgressEventRaised(host_ids, url, num_total, num_complete); |
| 42 } | 43 } |
| 44 |
| 45 void AppCacheDispatcher::OnLogMessage( |
| 46 int host_id, int log_level, const std::string& message) { |
| 47 frontend_impl_.OnLogMessage( |
| 48 host_id, static_cast<appcache::LogLevel>(log_level), message); |
| 49 } |
| 50 |
| 43 void AppCacheDispatcher::OnContentBlocked(int host_id) { | 51 void AppCacheDispatcher::OnContentBlocked(int host_id) { |
| 44 frontend_impl_.OnContentBlocked(host_id); | 52 frontend_impl_.OnContentBlocked(host_id); |
| 45 } | 53 } |
| OLD | NEW |