| Index: content/public/browser/content_browser_client.h
|
| diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
|
| index 56b709c056f6d638e4121c36d4f391c1cff9d77c..5cb059eae70b7d5d066f6761c7a137c41e8d26f3 100644
|
| --- a/content/public/browser/content_browser_client.h
|
| +++ b/content/public/browser/content_browser_client.h
|
| @@ -611,11 +611,16 @@ class CONTENT_EXPORT ContentBrowserClient {
|
|
|
| // Allows an embedder to return its own LocationProvider implementation.
|
| // Return nullptr to use the default one for the platform to be created.
|
| + // Caller takes ownership of the returned LocationProvider.
|
| // FYI: Used by an external project; please don't remove.
|
| // Contact Viatcheslav Ostapenko at sl.ostapenko@samsung.com for more
|
| // information.
|
| virtual LocationProvider* OverrideSystemLocationProvider();
|
|
|
| + // 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 DevToolsManagerDelegate. The caller owns the returned value.
|
| // It's valid to return nullptr.
|
| virtual DevToolsManagerDelegate* GetDevToolsManagerDelegate();
|
|
|