summaryrefslogtreecommitdiffstats
path: root/chrome/renderer
diff options
context:
space:
mode:
authorjknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 17:26:33 +0000
committerjknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 17:26:33 +0000
commit24ebb8c857a6c479854c328b9d5b0bc44292f415 (patch)
treeaaadc1d40e9eff51c112428c418f77d0bdb58c75 /chrome/renderer
parent878761aef2460c1c2b8922e3e4c5da234f5c7b60 (diff)
downloadchromium_src-24ebb8c857a6c479854c328b9d5b0bc44292f415.zip
chromium_src-24ebb8c857a6c479854c328b9d5b0bc44292f415.tar.gz
chromium_src-24ebb8c857a6c479854c328b9d5b0bc44292f415.tar.bz2
Revert rev 69137 due to incorrect change log.
BUG=None TEST=None Review URL: http://codereview.chromium.org/5744005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69152 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r--chrome/renderer/geolocation_dispatcher.cc155
-rw-r--r--chrome/renderer/geolocation_dispatcher.h75
-rw-r--r--chrome/renderer/geolocation_dispatcher_old.cc3
-rw-r--r--chrome/renderer/geolocation_dispatcher_old.h8
-rw-r--r--chrome/renderer/render_view.cc13
-rw-r--r--chrome/renderer/render_view.h10
6 files changed, 3 insertions, 261 deletions
diff --git a/chrome/renderer/geolocation_dispatcher.cc b/chrome/renderer/geolocation_dispatcher.cc
deleted file mode 100644
index 39596af..0000000
--- a/chrome/renderer/geolocation_dispatcher.cc
+++ /dev/null
@@ -1,155 +0,0 @@
-// 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.
-
-#if defined(ENABLE_CLIENT_BASED_GEOLOCATION)
-
-#include "chrome/renderer/geolocation_dispatcher.h"
-
-#include "chrome/renderer/render_view.h"
-#include "ipc/ipc_message.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebGeolocationPermissionRequest.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebGeolocationPermissionRequestManager.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebGeolocationClient.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebGeolocationPosition.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebGeolocationError.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h"
-
-using namespace WebKit;
-
-GeolocationDispatcher::GeolocationDispatcher(RenderView* render_view)
- : render_view_(render_view),
- pending_permissions_(new WebGeolocationPermissionRequestManager()),
- enable_high_accuracy_(false),
- updating_(false) {
-}
-
-GeolocationDispatcher::~GeolocationDispatcher() {}
-
-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_UNHANDLED(handled = false)
- IPC_END_MESSAGE_MAP()
- return handled;
-}
-
-void GeolocationDispatcher::geolocationDestroyed() {
- controller_.reset();
- DCHECK(!updating_);
-}
-
-void GeolocationDispatcher::startUpdating() {
- // TODO(jknotten): Remove url and bridge_id from StartUpdating message
- // once we have switched over to client-based geolocation.
- GURL url;
- render_view_->Send(new ViewHostMsg_Geolocation_StartUpdating(
- render_view_->routing_id(), -1, url, enable_high_accuracy_));
- updating_ = true;
-}
-
-void GeolocationDispatcher::stopUpdating() {
- // TODO(jknotten): Remove url and bridge_id from StopUpdating message
- // once we have switched over to client-based geolocation.
- render_view_->Send(new ViewHostMsg_Geolocation_StopUpdating(
- render_view_->routing_id(), -1));
- updating_ = false;
-}
-
-void GeolocationDispatcher::setEnableHighAccuracy(bool enable_high_accuracy) {
- // GeolocationController calls setEnableHighAccuracy(true) before
- // startUpdating in response to the first high-accuracy Geolocation
- // subscription. When the last high-accuracy Geolocation unsubscribes
- // it calls setEnableHighAccuracy(false) after stopUpdating.
- bool has_changed = enable_high_accuracy_ != enable_high_accuracy;
- enable_high_accuracy_ = enable_high_accuracy;
- // We have a different accuracy requirement. Request browser to update.
- if (updating_ && has_changed)
- startUpdating();
-}
-
-void GeolocationDispatcher::setController(
- WebGeolocationController* controller) {
- controller_.reset(controller);
-}
-
-bool GeolocationDispatcher::lastPosition(WebGeolocationPosition&) {
- // The latest position is stored in the browser, not the renderer, so we
- // would have to fetch it synchronously to give a good value here. The
- // WebCore::GeolocationController already caches the last position it
- // receives, so there is not much benefit to more position caching here.
- return false;
-}
-
-// TODO(jknotten): Change the messages to use a security origin, so no
-// conversion is necessary.
-void GeolocationDispatcher::requestPermission(
- const WebGeolocationPermissionRequest& permissionRequest) {
- int bridge_id = pending_permissions_->add(permissionRequest);
- string16 origin = permissionRequest.securityOrigin().toString();
- render_view_->Send(new ViewHostMsg_Geolocation_RequestPermission(
- render_view_->routing_id(), bridge_id, GURL(origin)));
-}
-
-// TODO(jknotten): Change the messages to use a security origin, so no
-// conversion is necessary.
-void GeolocationDispatcher::cancelPermissionRequest(
- const WebGeolocationPermissionRequest& permissionRequest) {
- int bridge_id;
- if (!pending_permissions_->remove(permissionRequest, bridge_id))
- return;
- string16 origin = permissionRequest.securityOrigin().toString();
- render_view_->Send(new ViewHostMsg_Geolocation_CancelPermissionRequest(
- render_view_->routing_id(), bridge_id, GURL(origin)));
-}
-
-// Permission for using geolocation has been set.
-void GeolocationDispatcher::OnGeolocationPermissionSet(
- int bridge_id, bool is_allowed) {
- WebGeolocationPermissionRequest permissionRequest;
- if (!pending_permissions_->remove(bridge_id, permissionRequest))
- return;
- permissionRequest.setIsAllowed(is_allowed);
-}
-
-// We have an updated geolocation position or error code.
-void GeolocationDispatcher::OnGeolocationPositionUpdated(
- const Geoposition& geoposition) {
- DCHECK(updating_);
- DCHECK(geoposition.IsInitialized());
- if (geoposition.IsValidFix()) {
- controller_->positionChanged(
- WebGeolocationPosition(
- static_cast<int64>(geoposition.timestamp.ToDoubleT() * 1000),
- geoposition.latitude, geoposition.longitude,
- geoposition.accuracy,
- geoposition.is_valid_altitude(), geoposition.altitude,
- geoposition.is_valid_altitude_accuracy(),
- geoposition.altitude_accuracy,
- geoposition.is_valid_heading(), geoposition.heading,
- geoposition.is_valid_speed(), geoposition.speed));
- } else {
- WebGeolocationError::Error code;
- switch (geoposition.error_code) {
- case Geoposition::ERROR_CODE_PERMISSION_DENIED:
- code = WebGeolocationError::ErrorPermissionDenied;
- break;
- case Geoposition::ERROR_CODE_POSITION_UNAVAILABLE:
- code = WebGeolocationError::ErrorPositionUnavailable;
- break;
- default:
- DCHECK(false);
- NOTREACHED() << geoposition.error_code;
- return;
- }
- controller_->errorOccurred(
- WebGeolocationError(
- code, WebKit::WebString::fromUTF8(geoposition.error_message)));
- }
-}
-
-#endif // CLIENT_BASED_GEOLOCATION
diff --git a/chrome/renderer/geolocation_dispatcher.h b/chrome/renderer/geolocation_dispatcher.h
deleted file mode 100644
index 91c92a8..0000000
--- a/chrome/renderer/geolocation_dispatcher.h
+++ /dev/null
@@ -1,75 +0,0 @@
-// 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.
-
-#ifndef CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
-#define CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
-#pragma once
-
-#if defined(ENABLE_CLIENT_BASED_GEOLOCATION)
-
-#include "base/scoped_ptr.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebGeolocationClient.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebGeolocationController.h"
-
-class RenderView;
-struct Geoposition;
-
-namespace WebKit {
-class WebGeolocationController;
-class WebGeolocationPermissionRequest;
-class WebGeolocationPermissionRequestManager;
-class WebGeolocationPosition;
-class WebSecurityOrigin;
-}
-
-namespace IPC {
-class Message;
-}
-
-// GeolocationDispatcher is a delegate for Geolocation messages used by
-// WebKit.
-// It's the complement of GeolocationDispatcherHost (owned by RenderViewHost).
-class GeolocationDispatcher : public WebKit::WebGeolocationClient {
- public:
- explicit GeolocationDispatcher(RenderView* render_view);
- virtual ~GeolocationDispatcher();
-
- // IPC
- bool OnMessageReceived(const IPC::Message& message);
-
- // WebGeolocationClient
- virtual void geolocationDestroyed();
- virtual void startUpdating();
- virtual void stopUpdating();
- virtual void setEnableHighAccuracy(bool enable_high_accuracy);
- virtual void setController(WebKit::WebGeolocationController* controller);
- virtual bool lastPosition(WebKit::WebGeolocationPosition& position);
- virtual void requestPermission(
- const WebKit::WebGeolocationPermissionRequest& permissionRequest);
- virtual void cancelPermissionRequest(
- const WebKit::WebGeolocationPermissionRequest& permissionRequest);
-
- private:
- // Permission for using geolocation has been set.
- void OnGeolocationPermissionSet(int bridge_id, bool is_allowed);
-
- // We have an updated geolocation position or error code.
- void OnGeolocationPositionUpdated(const Geoposition& geoposition);
-
- // GeolocationDispatcher is owned by RenderView. Back pointer for IPC.
- RenderView* render_view_;
-
- // The controller_ is valid for the lifetime of the underlying
- // WebCore::GeolocationController. geolocationDestroyed() is
- // invoked when the underlying object is destroyed.
- scoped_ptr< WebKit::WebGeolocationController> controller_;
-
- scoped_ptr<WebKit::WebGeolocationPermissionRequestManager>
- pending_permissions_;
- bool enable_high_accuracy_;
- bool updating_;
-};
-#endif // ENABLE_CLIENT_BASED_GEOLOCATION
-
-#endif // CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
diff --git a/chrome/renderer/geolocation_dispatcher_old.cc b/chrome/renderer/geolocation_dispatcher_old.cc
index 4a235c7..a6eff8b 100644
--- a/chrome/renderer/geolocation_dispatcher_old.cc
+++ b/chrome/renderer/geolocation_dispatcher_old.cc
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#if !defined(ENABLE_CLIENT_BASED_GEOLOCATION)
#include "chrome/renderer/geolocation_dispatcher_old.h"
+
#include "base/command_line.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/renderer/render_view.h"
@@ -113,4 +113,3 @@ void GeolocationDispatcherOld::OnGeolocationPositionUpdated(
}
}
}
-#endif // !ENABLE_CLIENT_BASED_GEOLOCATION
diff --git a/chrome/renderer/geolocation_dispatcher_old.h b/chrome/renderer/geolocation_dispatcher_old.h
index 51567ef..57f7d8a 100644
--- a/chrome/renderer/geolocation_dispatcher_old.h
+++ b/chrome/renderer/geolocation_dispatcher_old.h
@@ -6,10 +6,6 @@
#define CHROME_RENDERER_GEOLOCATION_DISPATCHER_OLD_H_
#pragma once
-#if !defined(ENABLE_CLIENT_BASED_GEOLOCATION)
-// TODO(jknotten): Remove this class once the new client-based implementation is
-// checked in (see http://crbug.com/59908).
-
#include "base/basictypes.h"
#include "base/id_map.h"
#include "ipc/ipc_message.h"
@@ -25,6 +21,8 @@ struct Geoposition;
// It's the complement of GeolocationDispatcherHostOld (owned by
// RenderViewHost).
+// TODO(jknotten): Remove this class once the new client-based implementation is
+// checked in (see http://crbug.com/59908).
class GeolocationDispatcherOld : public WebKit::WebGeolocationService {
public:
explicit GeolocationDispatcherOld(RenderView* render_view);
@@ -63,6 +61,4 @@ class GeolocationDispatcherOld : public WebKit::WebGeolocationService {
DISALLOW_COPY_AND_ASSIGN(GeolocationDispatcherOld);
};
-#endif // ENABLE_CLIENT_BASED_GEOLOCATION
-
#endif // CHROME_RENDERER_GEOLOCATION_DISPATCHER_OLD_H_
diff --git a/chrome/renderer/render_view.cc b/chrome/renderer/render_view.cc
index ca0c0e5..b639dd0 100644
--- a/chrome/renderer/render_view.cc
+++ b/chrome/renderer/render_view.cc
@@ -63,11 +63,7 @@
#include "chrome/renderer/extensions/renderer_extension_bindings.h"
#include "chrome/renderer/external_host_bindings.h"
#include "chrome/renderer/external_popup_menu.h"
-#if ENABLE_CLIENT_BASED_GEOLOCATION
-#include "chrome/renderer/geolocation_dispatcher.h"
-#else
#include "chrome/renderer/geolocation_dispatcher_old.h"
-#endif
#include "chrome/renderer/ggl/ggl.h"
#include "chrome/renderer/localized_error.h"
#include "chrome/renderer/media/audio_renderer_impl.h"
@@ -5623,20 +5619,11 @@ void RenderView::OnPageTranslated() {
autofill_helper_->FrameContentsAvailable(frame);
}
-#if defined(ENABLE_CLIENT_BASED_GEOLOCATION)
-WebKit::WebGeolocationClient* RenderView::geolocationClient()
-{
- if (!geolocation_dispatcher_.get())
- geolocation_dispatcher_.reset(new GeolocationDispatcher(this));
- return geolocation_dispatcher_.get();
-}
-#else
WebKit::WebGeolocationService* RenderView::geolocationService() {
if (!geolocation_dispatcher_.get())
geolocation_dispatcher_.reset(new GeolocationDispatcherOld(this));
return geolocation_dispatcher_.get();
}
-#endif
WebKit::WebSpeechInputController* RenderView::speechInputController(
WebKit::WebSpeechInputListener* listener) {
diff --git a/chrome/renderer/render_view.h b/chrome/renderer/render_view.h
index 8b0fb5b..cdd2102 100644
--- a/chrome/renderer/render_view.h
+++ b/chrome/renderer/render_view.h
@@ -64,7 +64,6 @@ class DomAutomationController;
class DOMUIBindings;
class ExternalHostBindings;
class FilePath;
-class GeolocationDispatcher;
class GeolocationDispatcherOld;
class GURL;
class ListValue;
@@ -121,7 +120,6 @@ class WebDataSource;
class WebDocument;
class WebDragData;
class WebFrame;
-class WebGeolocationClient;
class WebGeolocationServiceInterface;
class WebImage;
class WebInputElement;
@@ -484,11 +482,7 @@ class RenderView : public RenderWidget,
virtual void didClearAutoFillSelection(const WebKit::WebNode& node);
virtual void didAcceptAutocompleteSuggestion(
const WebKit::WebInputElement& element);
-#if defined(ENABLE_CLIENT_BASED_GEOLOCATION)
- virtual WebKit::WebGeolocationClient* geolocationClient();
-#else
virtual WebKit::WebGeolocationService* geolocationService();
-#endif
virtual WebKit::WebSpeechInputController* speechInputController(
WebKit::WebSpeechInputListener* listener);
virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient();
@@ -1380,11 +1374,7 @@ class RenderView : public RenderWidget,
scoped_refptr<AudioMessageFilter> audio_message_filter_;
// The geolocation dispatcher attached to this view, lazily initialized.
-#if ENABLE_CLIENT_BASED_GEOLOCATION
- scoped_ptr<GeolocationDispatcher> geolocation_dispatcher_;
-#else
scoped_ptr<GeolocationDispatcherOld> geolocation_dispatcher_;
-#endif
// Handles accessibility requests into the renderer side, as well as
// maintains the cache and other features of the accessibility tree.