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

Unified Diff: components/autofill/core/browser/test_autofill_driver.h

Issue 1851933002: Convert //url to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IWYU fixup 7 Created 4 years, 9 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
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);
« no previous file with comments | « chrome/browser/interstitials/security_interstitial_page.cc ('k') | components/domain_reliability/uploader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698