| Index: components/autofill/core/browser/test_autofill_driver.h
|
| diff --git a/components/autofill/core/browser/test_autofill_driver.h b/components/autofill/core/browser/test_autofill_driver.h
|
| index 132196cc4e4ba2de36ec637d9dc49c40c652f09b..0d6b5afb279d7badb2539e8049401159a30351ca 100644
|
| --- a/components/autofill/core/browser/test_autofill_driver.h
|
| +++ b/components/autofill/core/browser/test_autofill_driver.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_
|
| #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| @@ -54,7 +56,7 @@ class TestAutofillDriver : public AutofillDriver {
|
| void SetURLRequestContext(net::URLRequestContextGetter* url_request_context);
|
|
|
| private:
|
| - scoped_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_;
|
| + std::unique_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_;
|
| net::URLRequestContextGetter* url_request_context_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver);
|
|
|