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

Unified Diff: chrome/browser/extensions/api/platform_keys/platform_keys_api.h

Issue 1871713002: Convert //chrome/browser/extensions from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and fix header Created 4 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: chrome/browser/extensions/api/platform_keys/platform_keys_api.h
diff --git a/chrome/browser/extensions/api/platform_keys/platform_keys_api.h b/chrome/browser/extensions/api/platform_keys/platform_keys_api.h
index 7f6a99cab66d08d68f34c78687583771585872ba..233e264a032c7d373548bb6f77861d88d441e7fe 100644
--- a/chrome/browser/extensions/api/platform_keys/platform_keys_api.h
+++ b/chrome/browser/extensions/api/platform_keys/platform_keys_api.h
@@ -40,7 +40,7 @@ class PlatformKeysInternalSelectClientCertificatesFunction
// Called when the certificates were selected. If an error occurred, |certs|
// will be null and instead |error_message| be set.
- void OnSelectedCertificates(scoped_ptr<net::CertificateList> matches,
+ void OnSelectedCertificates(std::unique_ptr<net::CertificateList> matches,
const std::string& error_message);
DECLARE_EXTENSION_FUNCTION("platformKeysInternal.selectClientCertificates",

Powered by Google App Engine
This is Rietveld 408576698