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

Side by Side Diff: chrome/common/appcache/appcache_dispatcher.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, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_ErrorEventRaised, OnErrorEventRaised) 17 IPC_MESSAGE_HANDLER(AppCacheMsg_ErrorEventRaised, OnErrorEventRaised)
18 IPC_MESSAGE_HANDLER(AppCacheMsg_LogMessage, OnLogMessage) 18 IPC_MESSAGE_HANDLER(AppCacheMsg_LogMessage, OnLogMessage)
19 IPC_MESSAGE_HANDLER(AppCacheMsg_ContentBlocked, OnContentBlocked) 19 IPC_MESSAGE_HANDLER(AppCacheMsg_ContentBlocked, OnContentBlocked)
20 IPC_MESSAGE_UNHANDLED(handled = false) 20 IPC_MESSAGE_UNHANDLED(handled = false)
21 IPC_END_MESSAGE_MAP() 21 IPC_END_MESSAGE_MAP()
22 return handled; 22 return handled;
23 } 23 }
24 24
25 void AppCacheDispatcher::OnCacheSelected(int host_id, int64 cache_id, 25 void AppCacheDispatcher::OnCacheSelected(
26 appcache::Status status) { 26 int host_id, const appcache::AppCacheInfo& info) {
27 frontend_impl_.OnCacheSelected(host_id, cache_id, status); 27 frontend_impl_.OnCacheSelected(host_id, info);
28 } 28 }
29 29
30 void AppCacheDispatcher::OnStatusChanged(const std::vector<int>& host_ids, 30 void AppCacheDispatcher::OnStatusChanged(const std::vector<int>& host_ids,
31 appcache::Status status) { 31 appcache::Status status) {
32 frontend_impl_.OnStatusChanged(host_ids, status); 32 frontend_impl_.OnStatusChanged(host_ids, status);
33 } 33 }
34 34
35 void AppCacheDispatcher::OnEventRaised(const std::vector<int>& host_ids, 35 void AppCacheDispatcher::OnEventRaised(const std::vector<int>& host_ids,
36 appcache::EventID event_id) { 36 appcache::EventID event_id) {
37 frontend_impl_.OnEventRaised(host_ids, event_id); 37 frontend_impl_.OnEventRaised(host_ids, event_id);
(...skipping 14 matching lines...) Expand all
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698