1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/renderer/geolocation_dispatcher.h"
#include "base/command_line.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/renderer/render_view.h"
#include "third_party/WebKit/WebKit/chromium/public/WebCString.h"
#include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
#include "third_party/WebKit/WebKit/chromium/public/WebGeolocationServiceBridge.h"
using WebKit::WebFrame;
GeolocationDispatcher::GeolocationDispatcher(RenderView* render_view)
: render_view_(render_view) {
render_view_->Send(new ViewHostMsg_Geolocation_RegisterDispatcher(
render_view_->routing_id()));
}
GeolocationDispatcher::~GeolocationDispatcher() {
render_view_->Send(new ViewHostMsg_Geolocation_UnregisterDispatcher(
render_view_->routing_id()));
}
bool GeolocationDispatcher::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(GeolocationDispatcher, message)
IPC_MESSAGE_HANDLER(ViewMsg_Geolocation_PermissionSet,
OnGeolocationPermissionSet)
IPC_MESSAGE_HANDLER(ViewMsg_Geolocation_PositionUpdated,
OnGeolocationPositionUpdated)
IPC_MESSAGE_HANDLER(ViewMsg_Geolocation_Error, OnGeolocationError)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void GeolocationDispatcher::requestPermissionForFrame(
int bridge_id, const WebKit::WebURL& url) {
render_view_->Send(new ViewHostMsg_Geolocation_RequestPermission(
render_view_->routing_id(), bridge_id, GURL(url)));
}
void GeolocationDispatcher::startUpdating(
int bridge_id, const WebKit::WebURL& url, bool enableHighAccuracy) {
render_view_->Send(new ViewHostMsg_Geolocation_StartUpdating(
render_view_->routing_id(), bridge_id, GURL(url),
enableHighAccuracy));
}
void GeolocationDispatcher::stopUpdating(int bridge_id) {
render_view_->Send(new ViewHostMsg_Geolocation_StopUpdating(
render_view_->routing_id(), bridge_id));
}
void GeolocationDispatcher::suspend(int bridge_id) {
render_view_->Send(new ViewHostMsg_Geolocation_Suspend(
render_view_->routing_id(), bridge_id));
}
void GeolocationDispatcher::resume(int bridge_id) {
render_view_->Send(new ViewHostMsg_Geolocation_Resume(
render_view_->routing_id(), bridge_id));
}
int GeolocationDispatcher::attachBridge(
WebKit::WebGeolocationServiceBridge* bridge) {
return bridges_map_.Add(bridge);
}
void GeolocationDispatcher::detachBridge(int bridge_id) {
bridges_map_.Remove(bridge_id);
}
void GeolocationDispatcher::OnGeolocationPermissionSet(int bridge_id,
bool allowed) {
WebKit::WebGeolocationServiceBridge* bridge = bridges_map_.Lookup(bridge_id);
if (bridge) {
bridge->setIsAllowed(allowed);
}
}
void GeolocationDispatcher::OnGeolocationPositionUpdated(
const Geoposition& geoposition) {
for (IDMap<WebKit::WebGeolocationServiceBridge>::iterator it(&bridges_map_);
!it.IsAtEnd(); it.Advance()) {
it.GetCurrentValue()->setLastPosition(
geoposition.latitude, geoposition.longitude,
geoposition.is_valid_altitude(), geoposition.altitude,
geoposition.accuracy,
geoposition.is_valid_altitude_accuracy(), geoposition.altitude_accuracy,
geoposition.is_valid_heading(), geoposition.heading,
geoposition.is_valid_speed(), geoposition.speed,
static_cast<int64>(geoposition.timestamp.ToDoubleT() * 1000));
}
}
void GeolocationDispatcher::OnGeolocationError(int code,
const std::string& message) {
for (IDMap<WebKit::WebGeolocationServiceBridge>::iterator it(&bridges_map_);
!it.IsAtEnd(); it.Advance()) {
it.GetCurrentValue()->setLastError(
code, WebKit::WebString::fromUTF8(message));
}
}
|