Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8083)

Unified Diff: device/geolocation/geolocation_delegate.h

Issue 2192683003: Revert of Reland: Geolocation: move from content/browser to device/ (patchset #2 id:20001 of https:… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2810
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/geolocation/geolocation.gyp ('k') | device/geolocation/geolocation_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/geolocation/geolocation_delegate.h
diff --git a/device/geolocation/geolocation_delegate.h b/device/geolocation/geolocation_delegate.h
deleted file mode 100644
index a3f621bdece36a06e0ccf958a1757cd3f05bf34c..0000000000000000000000000000000000000000
--- a/device/geolocation/geolocation_delegate.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2016 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.
-
-#ifndef DEVICE_GEOLOCATION_GEOLOCATION_DELEGATE_H_
-#define DEVICE_GEOLOCATION_GEOLOCATION_DELEGATE_H_
-
-#include <memory>
-
-#include "base/memory/ref_counted.h"
-#include "device/geolocation/geolocation_export.h"
-
-namespace device {
-class AccessTokenStore;
-class LocationProvider;
-
-// An embedder of Geolocation may override these class' methods to provide
-// specific functionality.
-class DEVICE_GEOLOCATION_EXPORT GeolocationDelegate {
- public:
- virtual ~GeolocationDelegate() {}
-
- // Returns true if the location API should use network-based location
- // approximation in addition to the system provider, if any.
- virtual bool UseNetworkLocationProviders();
-
- // Creates a new AccessTokenStore for geolocation. May return nullptr.
- virtual scoped_refptr<AccessTokenStore> CreateAccessTokenStore();
-
- // Allows an embedder to return its own LocationProvider implementation.
- // Return nullptr to use the default one for the platform to be created.
- // FYI: Used by an external project; please don't remove. Contact Viatcheslav
- // Ostapenko at sl.ostapenko@samsung.com for more information.
- virtual std::unique_ptr<LocationProvider> OverrideSystemLocationProvider();
-};
-
-} // namespace device
-
-#endif // DEVICE_GEOLOCATION_GEOLOCATION_DELEGATE_H_
« no previous file with comments | « device/geolocation/geolocation.gyp ('k') | device/geolocation/geolocation_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698