OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 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 "content/browser/nav_controller/nav_controller_dispatcher_host.h" |
| 6 |
| 7 #include "content/browser/nav_controller/nav_controller_context.h" |
| 8 #include "content/common/nav_controller/nav_controller_messages.h" |
| 9 #include "ipc/ipc_message_macros.h" |
| 10 #include "url/gurl.h" |
| 11 |
| 12 namespace content { |
| 13 |
| 14 NavControllerDispatcherHost::NavControllerDispatcherHost( |
| 15 NavControllerContext* context) |
| 16 : context_(context) {} |
| 17 |
| 18 NavControllerDispatcherHost::~NavControllerDispatcherHost() {} |
| 19 |
| 20 bool NavControllerDispatcherHost::OnMessageReceived(const IPC::Message& message, |
| 21 bool* message_was_ok) { |
| 22 |
| 23 if (IPC_MESSAGE_CLASS(message) != NavControllerMsgStart) |
| 24 return false; |
| 25 |
| 26 bool handled = true; |
| 27 IPC_BEGIN_MESSAGE_MAP_EX( |
| 28 NavControllerDispatcherHost, message, *message_was_ok) |
| 29 IPC_MESSAGE_HANDLER(NavControllerHostMsg_RegisterController, |
| 30 OnRegisterController) |
| 31 IPC_MESSAGE_HANDLER(NavControllerHostMsg_UnregisterController, |
| 32 OnUnregisterController) |
| 33 IPC_MESSAGE_UNHANDLED(handled = false) |
| 34 IPC_END_MESSAGE_MAP() |
| 35 |
| 36 return handled; |
| 37 } |
| 38 |
| 39 void NavControllerDispatcherHost::OnRegisterController(int32 host_id, |
| 40 const string16& scope, |
| 41 const GURL& script_url) { |
| 42 } |
| 43 |
| 44 void NavControllerDispatcherHost::OnUnregisterController( |
| 45 int32 host_id, |
| 46 const string16& scope) {} |
| 47 |
| 48 } // namespace content |
OLD | NEW |