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

Unified Diff: components/autofill/ios/browser/autofill_driver_ios.h

Issue 2847763003: Switch SupportsUserData uses to use unique_ptr. (Closed)
Patch Set: Created 3 years, 8 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/ios/browser/autofill_driver_ios.h
diff --git a/components/autofill/ios/browser/autofill_driver_ios.h b/components/autofill/ios/browser/autofill_driver_ios.h
index cae6b8663e625d6c1df50927b361d80fee22396b..a6fde4e3764f13d6536452374f9a8b3bf05c9f66 100644
--- a/components/autofill/ios/browser/autofill_driver_ios.h
+++ b/components/autofill/ios/browser/autofill_driver_ios.h
@@ -26,6 +26,8 @@ namespace autofill {
class AutofillDriverIOS : public AutofillDriver,
public web::WebStateUserData<AutofillDriverIOS> {
public:
+ ~AutofillDriverIOS() override;
+
static void CreateForWebStateAndDelegate(
web::WebState* web_state,
AutofillClient* client,
@@ -67,7 +69,6 @@ class AutofillDriverIOS : public AutofillDriver,
id<AutofillDriverIOSBridge> bridge,
const std::string& app_locale,
AutofillManager::AutofillDownloadManagerState enable_download_manager);
- ~AutofillDriverIOS() override;
// The WebState with which this object is associated.
web::WebState* web_state_;

Powered by Google App Engine
This is Rietveld 408576698