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

Unified Diff: chrome/browser/internal_auth.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
« no previous file with comments | « chrome/browser/first_run/first_run.cc ('k') | chrome/browser/media/router/media_router_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/internal_auth.cc
diff --git a/chrome/browser/internal_auth.cc b/chrome/browser/internal_auth.cc
index 42da3ffaf011f90f8668a9a32f5831925fc4a528..8165e6473bf28b61838ac2220f917c705de2d0ce 100644
--- a/chrome/browser/internal_auth.cc
+++ b/chrome/browser/internal_auth.cc
@@ -324,8 +324,8 @@ class InternalAuthVerificationService {
namespace {
-static base::LazyInstance<chrome::InternalAuthVerificationService>
- g_verification_service = LAZY_INSTANCE_INITIALIZER;
+static base::LazyInstance<chrome::InternalAuthVerificationService>::
+ DestructorAtExit g_verification_service = LAZY_INSTANCE_INITIALIZER;
static base::LazyInstance<base::Lock>::Leaky
g_verification_service_lock = LAZY_INSTANCE_INITIALIZER;
@@ -432,8 +432,8 @@ class InternalAuthGenerationService : public base::ThreadChecker {
namespace {
-static base::LazyInstance<chrome::InternalAuthGenerationService>
- g_generation_service = LAZY_INSTANCE_INITIALIZER;
+static base::LazyInstance<chrome::InternalAuthGenerationService>::
+ DestructorAtExit g_generation_service = LAZY_INSTANCE_INITIALIZER;
} // namespace
« no previous file with comments | « chrome/browser/first_run/first_run.cc ('k') | chrome/browser/media/router/media_router_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698