Index: content/browser/geolocation/network_location_request.h |
diff --git a/content/browser/geolocation/network_location_request.h b/content/browser/geolocation/network_location_request.h |
index 6f7673af51422833bb039b95a2d287d3c0f54cf6..e091320b8a09ce131dc2455f5d59290a76945a7a 100644 |
--- a/content/browser/geolocation/network_location_request.h |
+++ b/content/browser/geolocation/network_location_request.h |
@@ -5,10 +5,11 @@ |
#ifndef CONTENT_BROWSER_GEOLOCATION_NETWORK_LOCATION_REQUEST_H_ |
#define CONTENT_BROWSER_GEOLOCATION_NETWORK_LOCATION_REQUEST_H_ |
+#include <memory> |
+ |
#include "base/callback.h" |
#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/strings/string16.h" |
#include "content/browser/geolocation/wifi_data_provider.h" |
#include "content/common/content_export.h" |
@@ -61,7 +62,7 @@ class NetworkLocationRequest : private net::URLFetcherDelegate { |
scoped_refptr<net::URLRequestContextGetter> url_context_; |
LocationResponseCallback location_response_callback_; |
const GURL url_; |
- scoped_ptr<net::URLFetcher> url_fetcher_; |
+ std::unique_ptr<net::URLFetcher> url_fetcher_; |
// Keep a copy of the data sent in the request, so we can refer back to it |
// when the response arrives. |