| Index: components/password_manager/core/browser/affiliation_fetch_throttler.h
|
| diff --git a/components/password_manager/core/browser/affiliation_fetch_throttler.h b/components/password_manager/core/browser/affiliation_fetch_throttler.h
|
| index e793d0d7bd2a83a122c9744abcd1e3ca975ef4cb..42743aaaf2d7fbe58688e269626467efc0fb2843 100644
|
| --- a/components/password_manager/core/browser/affiliation_fetch_throttler.h
|
| +++ b/components/password_manager/core/browser/affiliation_fetch_throttler.h
|
| @@ -7,10 +7,11 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/gtest_prod_util.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "net/base/backoff_entry.h"
|
| #include "net/base/network_change_notifier.h"
|
| @@ -122,7 +123,7 @@ class AffiliationFetchThrottler
|
| State state_;
|
| bool has_network_connectivity_;
|
| bool is_fetch_scheduled_;
|
| - scoped_ptr<net::BackoffEntry> exponential_backoff_;
|
| + std::unique_ptr<net::BackoffEntry> exponential_backoff_;
|
|
|
| base::WeakPtrFactory<AffiliationFetchThrottler> weak_ptr_factory_;
|
|
|
|
|