diff options
author | jknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-18 10:27:54 +0000 |
---|---|---|
committer | jknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-18 10:27:54 +0000 |
commit | ef1c8617b7f658f1b5e6199729ba1bc9753b20ae (patch) | |
tree | 3d91087ab65bf0ed78949a611f1551c510a63c4e | |
parent | 985b169236397ac8ebf937a31ea7afbe8519f2c9 (diff) | |
download | chromium_src-ef1c8617b7f658f1b5e6199729ba1bc9753b20ae.zip chromium_src-ef1c8617b7f658f1b5e6199729ba1bc9753b20ae.tar.gz chromium_src-ef1c8617b7f658f1b5e6199729ba1bc9753b20ae.tar.bz2 |
Remove unused render_view_ field from GeolocationDispatcher class.
GeolocationDispatcher::render_view_ is never used or assigned to, so remove
unnecessary field.
BUG=None
TEST=Compile
Review URL: http://codereview.chromium.org/6507045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75376 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/renderer/geolocation_dispatcher.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/chrome/renderer/geolocation_dispatcher.h b/chrome/renderer/geolocation_dispatcher.h index b7809a0..fb62cf39 100644 --- a/chrome/renderer/geolocation_dispatcher.h +++ b/chrome/renderer/geolocation_dispatcher.h @@ -52,9 +52,6 @@ class GeolocationDispatcher : public RenderViewObserver, // 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. |