summaryrefslogtreecommitdiffstats
path: root/content/browser/geolocation/location_arbitrator_impl.cc
diff options
context:
space:
mode:
authorerg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-17 16:43:27 +0000
committererg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-17 16:43:27 +0000
commit59383c78c7b67b435ff4970060213928e1f153b8 (patch)
tree5c215c1ba34a10bf83ceea455552908c20061a5b /content/browser/geolocation/location_arbitrator_impl.cc
parentbf36fe526209a41c15f6747ffc1392206338896c (diff)
downloadchromium_src-59383c78c7b67b435ff4970060213928e1f153b8.zip
chromium_src-59383c78c7b67b435ff4970060213928e1f153b8.tar.gz
chromium_src-59383c78c7b67b435ff4970060213928e1f153b8.tar.bz2
Cleanup: Remove unnecessary ".get()" from scoped_ptrs<>.
In r174057, ajwong@ added support for implicit testing to scoped_ptr<>. Removes these in content/. BUG=232084 Review URL: https://codereview.chromium.org/14081010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194608 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation/location_arbitrator_impl.cc')
-rw-r--r--content/browser/geolocation/location_arbitrator_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/geolocation/location_arbitrator_impl.cc b/content/browser/geolocation/location_arbitrator_impl.cc
index 97cae8e..9b1594f 100644
--- a/content/browser/geolocation/location_arbitrator_impl.cc
+++ b/content/browser/geolocation/location_arbitrator_impl.cc
@@ -125,7 +125,7 @@ AccessTokenStore* GeolocationArbitratorImpl::NewAccessTokenStore() {
}
AccessTokenStore* GeolocationArbitratorImpl::GetAccessTokenStore() {
- if (!access_token_store_.get())
+ if (!access_token_store_)
access_token_store_ = NewAccessTokenStore();
return access_token_store_.get();
}