| Index: content/browser/geofencing/geofencing_dispatcher_host.cc
|
| diff --git a/content/browser/geofencing/geofencing_dispatcher_host.cc b/content/browser/geofencing/geofencing_dispatcher_host.cc
|
| index 5cae1136bc98afa4b8ae41cf5b22c2669524781d..4b8c865a2c14f469255aff7bce41bbe0dd5aacb5 100644
|
| --- a/content/browser/geofencing/geofencing_dispatcher_host.cc
|
| +++ b/content/browser/geofencing/geofencing_dispatcher_host.cc
|
| @@ -32,6 +32,10 @@ bool GeofencingDispatcherHost::OnMessageReceived(const IPC::Message& message) {
|
| IPC_MESSAGE_HANDLER(GeofencingHostMsg_UnregisterRegion, OnUnregisterRegion)
|
| IPC_MESSAGE_HANDLER(GeofencingHostMsg_GetRegisteredRegions,
|
| OnGetRegisteredRegions)
|
| + IPC_MESSAGE_FORWARD(GeofencingHostMsg_SetMockProvider, manager_.get(),
|
| + GeofencingManager::SetMockProvider)
|
| + IPC_MESSAGE_FORWARD(GeofencingHostMsg_SetMockPosition, manager_.get(),
|
| + GeofencingManager::SetMockPosition)
|
| IPC_MESSAGE_UNHANDLED(handled = false)
|
| IPC_END_MESSAGE_MAP()
|
| return handled;
|
|
|