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

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

Issue 1445003002: Use std::default_delete as the default deleter for scoped_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: How many trial and errors before this builds on the Windows bots Created 5 years, 1 month 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
« no previous file with comments | « chromeos/dbus/fake_modem_messaging_client.cc ('k') | components/cloud_devices/common/description_items.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/browser/personal_data_manager.h
diff --git a/components/autofill/core/browser/personal_data_manager.h b/components/autofill/core/browser/personal_data_manager.h
index bd1a7dea3dce478704b9a270a4a8c03eb3ce9251..8d003bc478d44aeebf6e733bc15c5d2c338fe12c 100644
--- a/components/autofill/core/browser/personal_data_manager.h
+++ b/components/autofill/core/browser/personal_data_manager.h
@@ -5,6 +5,7 @@
#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PERSONAL_DATA_MANAGER_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_PERSONAL_DATA_MANAGER_H_
+#include <memory>
#include <set>
#include <vector>
@@ -244,7 +245,7 @@ class PersonalDataManager : public KeyedService,
#endif
friend class ProfileSyncServiceAutofillTest;
friend class ::RemoveAutofillTester;
- friend struct base::DefaultDeleter<PersonalDataManager>;
+ friend std::default_delete<PersonalDataManager>;
friend void autofill_helper::SetProfiles(
int, std::vector<autofill::AutofillProfile>*);
friend void autofill_helper::SetCreditCards(
« no previous file with comments | « chromeos/dbus/fake_modem_messaging_client.cc ('k') | components/cloud_devices/common/description_items.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698