diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-17 06:53:35 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-17 06:53:35 +0000 |
commit | 3541d300fff63cbf460cc0fffb3cbf9815da026b (patch) | |
tree | 57534b3612af172c67215349d2d52b6b0e3f3c60 /content/browser/geolocation | |
parent | 0cfad2f3536d469b4d3cffa807e565d813157bf3 (diff) | |
download | chromium_src-3541d300fff63cbf460cc0fffb3cbf9815da026b.zip chromium_src-3541d300fff63cbf460cc0fffb3cbf9815da026b.tar.gz chromium_src-3541d300fff63cbf460cc0fffb3cbf9815da026b.tar.bz2 |
Cleanup: Remove unneeded scoped_ptr.h includes from content.
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10389164
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137637 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation')
3 files changed, 8 insertions, 8 deletions
diff --git a/content/browser/geolocation/location_api_adapter_android.h b/content/browser/geolocation/location_api_adapter_android.h index 06d7195..9da98f7 100644 --- a/content/browser/geolocation/location_api_adapter_android.h +++ b/content/browser/geolocation/location_api_adapter_android.h @@ -2,16 +2,16 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CONTENT_BROWSER_GEOLOCATION_ANDROID_LOCATION_API_ADAPTER_H_ -#define CONTENT_BROWSER_GEOLOCATION_ANDROID_LOCATION_API_ADAPTER_H_ +#ifndef CONTENT_BROWSER_GEOLOCATION_LOCATION_API_ADAPTER_ANDROID_H_ +#define CONTENT_BROWSER_GEOLOCATION_LOCATION_API_ADAPTER_ANDROID_H_ #pragma once +#include "base/android/jni_helper.h" #include "base/android/scoped_java_ref.h" -#include "base/synchronization/lock.h" -#include "base/memory/scoped_ptr.h" +#include "base/memory/ref_counted.h" #include "base/memory/singleton.h" #include "base/message_loop_proxy.h" -#include "base/android/jni_helper.h" +#include "base/synchronization/lock.h" namespace content { struct Geoposition; @@ -80,4 +80,4 @@ class AndroidLocationApiAdapter { scoped_refptr<base::MessageLoopProxy> message_loop_; }; -#endif // CONTENT_BROWSER_GEOLOCATION_ANDROID_LOCATION_API_ADAPTER_H_ +#endif // CONTENT_BROWSER_GEOLOCATION_LOCATION_API_ADAPTER_ANDROID_H_ diff --git a/content/browser/geolocation/location_provider_android.h b/content/browser/geolocation/location_provider_android.h index 4a86d8c..6316296 100644 --- a/content/browser/geolocation/location_provider_android.h +++ b/content/browser/geolocation/location_provider_android.h @@ -5,7 +5,7 @@ #ifndef CONTENT_BROWSER_GEOLOCATION_LOCATION_PROVIDER_ANDROID_H_ #define CONTENT_BROWSER_GEOLOCATION_LOCATION_PROVIDER_ANDROID_H_ -#include "base/memory/scoped_ptr.h" +#include "base/compiler_specific.h" #include "content/browser/geolocation/location_provider.h" #include "content/public/common/geoposition.h" diff --git a/content/browser/geolocation/mock_location_provider.h b/content/browser/geolocation/mock_location_provider.h index 70a49ca..1fea7b9 100644 --- a/content/browser/geolocation/mock_location_provider.h +++ b/content/browser/geolocation/mock_location_provider.h @@ -7,8 +7,8 @@ #pragma once +#include "base/compiler_specific.h" #include "base/memory/ref_counted.h" -#include "base/memory/scoped_ptr.h" #include "base/threading/thread.h" #include "content/browser/geolocation/location_provider.h" #include "content/public/common/geoposition.h" |