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

Unified Diff: components/proximity_auth/screenlock_bridge.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 | « components/proximity_auth/metrics.cc ('k') | components/rappor/byte_vector_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/screenlock_bridge.h
diff --git a/components/proximity_auth/screenlock_bridge.h b/components/proximity_auth/screenlock_bridge.h
index 9b4739298c9ad066d3b997af13784ddeab941b6b..21a32dd7346631a4eaca29547877e1a8384288b2 100644
--- a/components/proximity_auth/screenlock_bridge.h
+++ b/components/proximity_auth/screenlock_bridge.h
@@ -5,6 +5,7 @@
#ifndef COMPONENTS_PROXIMITY_AUTH_SCREENLOCK_BRIDGE_H_
#define COMPONENTS_PROXIMITY_AUTH_SCREENLOCK_BRIDGE_H_
+#include <memory>
#include <string>
#include "base/basictypes.h"
@@ -172,7 +173,7 @@ class ScreenlockBridge {
private:
friend struct base::DefaultLazyInstanceTraits<ScreenlockBridge>;
- friend struct base::DefaultDeleter<ScreenlockBridge>;
+ friend std::default_delete<ScreenlockBridge>;
ScreenlockBridge();
~ScreenlockBridge();
« no previous file with comments | « components/proximity_auth/metrics.cc ('k') | components/rappor/byte_vector_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698