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

Side by Side Diff: chrome/common/app_cache/app_cache_dispatcher.cc

Issue 9712: AppCachePlumbing (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/common/app_cache/app_cache_dispatcher.h"
6
7 #include "chrome/common/app_cache/app_cache_context_impl.h"
8 #include "chrome/common/render_messages.h"
9
10 bool AppCacheDispatcher::OnMessageReceived(const IPC::Message& msg) {
11 bool handled = true;
12 IPC_BEGIN_MESSAGE_MAP(AppCacheDispatcher, msg)
13 IPC_MESSAGE_HANDLER(AppCacheMsg_AppCacheSelected, OnAppCacheSelected)
14 IPC_MESSAGE_UNHANDLED(handled = false)
15 IPC_END_MESSAGE_MAP()
16 return handled;
17 }
18
19 void AppCacheDispatcher::OnAppCacheSelected(int context_id,
20 int select_request_id,
21 int64 app_cache_id) {
22 AppCacheContextImpl *context = AppCacheContextImpl::FromContextId(context_id);
23 if (context) {
24 context->OnAppCacheSelected(select_request_id, app_cache_id);
25 }
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698