Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / geolocation / GeolocationInspectorAgent.cpp
1 /*
2  * Copyright (C) 2014 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "config.h"
32 #include "modules/geolocation/GeolocationInspectorAgent.h"
33
34 #include "modules/geolocation/GeolocationController.h"
35
36 namespace WebCore {
37
38 PassOwnPtr<GeolocationInspectorAgent> GeolocationInspectorAgent::create(GeolocationController* controller)
39 {
40     return adoptPtr(new GeolocationInspectorAgent(controller));
41 }
42
43 GeolocationInspectorAgent::~GeolocationInspectorAgent()
44 {
45 }
46
47 GeolocationInspectorAgent::GeolocationInspectorAgent(GeolocationController* controller)
48     : InspectorBaseAgent<GeolocationInspectorAgent>("Geolocation")
49     , m_controller(controller)
50     , m_geolocationOverridden(false)
51 {
52 }
53
54 void GeolocationInspectorAgent::setGeolocationOverride(ErrorString* error, const double* latitude, const double* longitude, const double* accuracy)
55 {
56     GeolocationPosition* position = m_controller->lastPosition();
57     if (!m_geolocationOverridden && position)
58         m_platformGeolocationPosition = position;
59
60     m_geolocationOverridden = true;
61     if (latitude && longitude && accuracy)
62         m_geolocationPosition = GeolocationPosition::create(currentTimeMS(), *latitude, *longitude, *accuracy);
63     else
64         m_geolocationPosition.clear();
65
66     m_controller->positionChanged(0); // Kick location update.
67 }
68
69 void GeolocationInspectorAgent::clearGeolocationOverride(ErrorString*)
70 {
71     if (!m_geolocationOverridden)
72         return;
73     m_geolocationOverridden = false;
74     m_geolocationPosition.clear();
75
76     if (m_platformGeolocationPosition.get())
77         m_controller->positionChanged(m_platformGeolocationPosition.get());
78 }
79
80 GeolocationPosition* GeolocationInspectorAgent::overrideGeolocationPosition(GeolocationPosition* position)
81 {
82     if (m_geolocationOverridden) {
83         if (position)
84             m_platformGeolocationPosition = position;
85         return m_geolocationPosition.get();
86     }
87     return position;
88 }
89
90 } // namespace WebCore