| Index: content/public/browser/geolocation_delegate.h
|
| diff --git a/device/geolocation/geolocation_delegate.h b/content/public/browser/geolocation_delegate.h
|
| similarity index 78%
|
| rename from device/geolocation/geolocation_delegate.h
|
| rename to content/public/browser/geolocation_delegate.h
|
| index a3f621bdece36a06e0ccf958a1757cd3f05bf34c..36ff280a815387a560553228832e4d0bf6069632 100644
|
| --- a/device/geolocation/geolocation_delegate.h
|
| +++ b/content/public/browser/geolocation_delegate.h
|
| @@ -2,21 +2,21 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef DEVICE_GEOLOCATION_GEOLOCATION_DELEGATE_H_
|
| -#define DEVICE_GEOLOCATION_GEOLOCATION_DELEGATE_H_
|
| +#ifndef CONTENT_PUBLIC_BROWSER_GEOLOCATION_DELEGATE_H_
|
| +#define CONTENT_PUBLIC_BROWSER_GEOLOCATION_DELEGATE_H_
|
|
|
| #include <memory>
|
|
|
| #include "base/memory/ref_counted.h"
|
| -#include "device/geolocation/geolocation_export.h"
|
| +#include "content/common/content_export.h"
|
|
|
| -namespace device {
|
| +namespace content {
|
| class AccessTokenStore;
|
| class LocationProvider;
|
|
|
| // An embedder of Geolocation may override these class' methods to provide
|
| // specific functionality.
|
| -class DEVICE_GEOLOCATION_EXPORT GeolocationDelegate {
|
| +class CONTENT_EXPORT GeolocationDelegate {
|
| public:
|
| virtual ~GeolocationDelegate() {}
|
|
|
| @@ -34,6 +34,6 @@ class DEVICE_GEOLOCATION_EXPORT GeolocationDelegate {
|
| virtual std::unique_ptr<LocationProvider> OverrideSystemLocationProvider();
|
| };
|
|
|
| -} // namespace device
|
| +} // namespace content
|
|
|
| -#endif // DEVICE_GEOLOCATION_GEOLOCATION_DELEGATE_H_
|
| +#endif // CONTENT_PUBLIC_BROWSER_GEOLOCATION_DELEGATE_H_
|
|
|