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)); |
} |