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

Unified Diff: chromeos/process_proxy/process_proxy_registry.cc

Issue 2733283002: Require explicit selection of traits for LazyInstance (Closed)
Patch Set: l10n again Created 3 years, 9 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: chromeos/process_proxy/process_proxy_registry.cc
diff --git a/chromeos/process_proxy/process_proxy_registry.cc b/chromeos/process_proxy/process_proxy_registry.cc
index 5bacfc57f5fcd1c516d290b9c90659a646641a08..2bd82df41a944fcf29551a96c7ff17618182a076 100644
--- a/chromeos/process_proxy/process_proxy_registry.cc
+++ b/chromeos/process_proxy/process_proxy_registry.cc
@@ -26,8 +26,8 @@ const char* ProcessOutputTypeToString(ProcessOutputType type) {
}
}
-static base::LazyInstance<ProcessProxyRegistry> g_process_proxy_registry =
- LAZY_INSTANCE_INITIALIZER;
+static base::LazyInstance<ProcessProxyRegistry>::DestructorAtExit
+ g_process_proxy_registry = LAZY_INSTANCE_INITIALIZER;
} // namespace

Powered by Google App Engine
This is Rietveld 408576698