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

Unified Diff: net/ssl/ssl_platform_key_task_runner.cc

Issue 1477643002: Remove the TYPE_WITH_MOVE_CONSTRUCTOR_FOR_CPP_03 macro. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@basepass
Patch Set: type-with-move: . 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: net/ssl/ssl_platform_key_task_runner.cc
diff --git a/net/ssl/ssl_platform_key_task_runner.cc b/net/ssl/ssl_platform_key_task_runner.cc
index 963b6d78d72293ea5ee43717c1986cb3948e2a43..7611d60454dccbef7f7ea8f1915e3c124511ebf8 100644
--- a/net/ssl/ssl_platform_key_task_runner.cc
+++ b/net/ssl/ssl_platform_key_task_runner.cc
@@ -25,7 +25,7 @@ base::LazyInstance<SSLPlatformKeyTaskRunner>::Leaky g_platform_key_task_runner =
LAZY_INSTANCE_INITIALIZER;
scoped_refptr<base::SequencedTaskRunner> GetSSLPlatformKeyTaskRunner() {
- return g_platform_key_task_runner.Get().task_runner().Pass();
+ return g_platform_key_task_runner.Get().task_runner();
}
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698