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

Unified Diff: content/public/browser/geolocation_delegate.cc

Issue 2104193002: Geolocation: Extract GeolocationProvider::Delegate into GeolocationDelegate (no new code) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: jam@ nit: content/browser/geolocation/geolocation_delegate.cc --> content/public/browser Created 4 years, 6 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 | « content/public/browser/geolocation_delegate.h ('k') | content/public/browser/geolocation_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/geolocation_delegate.cc
diff --git a/content/public/browser/geolocation_provider.cc b/content/public/browser/geolocation_delegate.cc
similarity index 49%
rename from content/public/browser/geolocation_provider.cc
rename to content/public/browser/geolocation_delegate.cc
index 738bb9d51f774b3c4108a6f739f8f9b7d7fa0985..8975fed40259c597351308e604e4f2979d43c868 100644
--- a/content/public/browser/geolocation_provider.cc
+++ b/content/public/browser/geolocation_delegate.cc
@@ -2,21 +2,19 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/public/browser/geolocation_provider.h"
+#include "content/public/browser/geolocation_delegate.h"
namespace content {
-bool GeolocationProvider::Delegate::UseNetworkLocationProviders() {
+bool GeolocationDelegate::UseNetworkLocationProviders() {
return true;
}
-AccessTokenStore*
-GeolocationProvider::Delegate::CreateAccessTokenStore() {
+AccessTokenStore* GeolocationDelegate::CreateAccessTokenStore() {
return nullptr;
}
-LocationProvider*
-GeolocationProvider::Delegate::OverrideSystemLocationProvider() {
+LocationProvider* GeolocationDelegate::OverrideSystemLocationProvider() {
return nullptr;
}
« no previous file with comments | « content/public/browser/geolocation_delegate.h ('k') | content/public/browser/geolocation_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698