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

Unified Diff: net/ssl/default_channel_id_store.cc

Issue 2101863004: net: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « net/ssl/client_key_store.cc ('k') | net/tools/cert_verify_tool/verify_using_cert_verify_proc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/default_channel_id_store.cc
diff --git a/net/ssl/default_channel_id_store.cc b/net/ssl/default_channel_id_store.cc
index ebac855e3600f64b6987565b81cc321b0f5d574c..4f63e688097ba1608837aba8e58405bdf1b61ab0 100644
--- a/net/ssl/default_channel_id_store.cc
+++ b/net/ssl/default_channel_id_store.cc
@@ -249,7 +249,7 @@ int DefaultChannelIDStore::GetChannelID(
void DefaultChannelIDStore::SetChannelID(
std::unique_ptr<ChannelID> channel_id) {
- auto task = new SetChannelIDTask(std::move(channel_id));
+ auto* task = new SetChannelIDTask(std::move(channel_id));
RunOrEnqueueTask(std::unique_ptr<Task>(task));
}
« no previous file with comments | « net/ssl/client_key_store.cc ('k') | net/tools/cert_verify_tool/verify_using_cert_verify_proc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698