diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-13 21:44:13 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-13 21:44:13 +0000 |
commit | 655119150f010df5863155462bcbb12fb0386354 (patch) | |
tree | 227a042a2275787c957262a6cd6593b05b1f8487 /content | |
parent | 6831f8bd7dd40e5ce4830e095d4178d79b84d5b0 (diff) | |
download | chromium_src-655119150f010df5863155462bcbb12fb0386354.zip chromium_src-655119150f010df5863155462bcbb12fb0386354.tar.gz chromium_src-655119150f010df5863155462bcbb12fb0386354.tar.bz2 |
content: Get rid of "using namespace WebKit;"
BUG=82078
TEST=None
R=jamesr@chromium.org
Review URL: http://codereview.chromium.org/7021006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85328 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/renderer/geolocation_dispatcher.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/content/renderer/geolocation_dispatcher.cc b/content/renderer/geolocation_dispatcher.cc index bcacbab..f4eeae9 100644 --- a/content/renderer/geolocation_dispatcher.cc +++ b/content/renderer/geolocation_dispatcher.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -13,7 +13,11 @@ #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" -using namespace WebKit; +using WebKit::WebGeolocationController; +using WebKit::WebGeolocationError; +using WebKit::WebGeolocationPermissionRequest; +using WebKit::WebGeolocationPermissionRequestManager; +using WebKit::WebGeolocationPosition; GeolocationDispatcher::GeolocationDispatcher(RenderView* render_view) : RenderViewObserver(render_view), |