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

Unified Diff: chrome/browser/ui/views/profiles/user_manager_view.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
Index: chrome/browser/ui/views/profiles/user_manager_view.h
diff --git a/chrome/browser/ui/views/profiles/user_manager_view.h b/chrome/browser/ui/views/profiles/user_manager_view.h
index ae9e7ca0ad482d017a1032efbd7a5f28c4051d56..5f22b03ff9c4561a794ff3af11ba0d455f9323f4 100644
--- a/chrome/browser/ui/views/profiles/user_manager_view.h
+++ b/chrome/browser/ui/views/profiles/user_manager_view.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_USER_MANAGER_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_PROFILES_USER_MANAGER_VIEW_H_
+#include <memory>
+
#include "base/auto_reset.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/profiles/profile.h"
@@ -41,7 +43,7 @@ class UserManagerView : public views::DialogDelegateView {
private:
~UserManagerView() override;
- friend struct base::DefaultDeleter<UserManagerView>;
+ friend std::default_delete<UserManagerView>;
// Creates dialog and initializes UI.
void Init(Profile* guest_profile, const GURL& url);
« no previous file with comments | « chrome/browser/ui/views/frame/taskbar_decorator_win.cc ('k') | chromeos/dbus/fake_modem_messaging_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698