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

Unified Diff: chrome/browser/internal_auth.cc

Issue 8430019: Make LazyInstance managed Locks leaky. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 2 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 | « base/mime_util_xdg.cc ('k') | content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/internal_auth.cc
===================================================================
--- chrome/browser/internal_auth.cc (revision 107977)
+++ chrome/browser/internal_auth.cc (working copy)
@@ -326,8 +326,9 @@
static base::LazyInstance<browser::InternalAuthVerificationService>
g_verification_service(base::LINKER_INITIALIZED);
-static base::LazyInstance<base::Lock> g_verification_service_lock(
- base::LINKER_INITIALIZED);
+static base::LazyInstance<base::Lock,
+ base::LeakyLazyInstanceTraits<base::Lock> >
+ g_verification_service_lock(base::LINKER_INITIALIZED);
} // namespace
@@ -477,4 +478,3 @@
}
} // namespace browser
-
« no previous file with comments | « base/mime_util_xdg.cc ('k') | content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698