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

Unified Diff: chrome/browser/android/webapps/single_tab_mode_tab_helper.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: chrome/browser/android/webapps/single_tab_mode_tab_helper.cc
diff --git a/chrome/browser/android/webapps/single_tab_mode_tab_helper.cc b/chrome/browser/android/webapps/single_tab_mode_tab_helper.cc
index 31435edcadc8e4352a0cd18f896fad23ee4a6131..85f4755f4d300ac4d957b768728ad81174254ee1 100644
--- a/chrome/browser/android/webapps/single_tab_mode_tab_helper.cc
+++ b/chrome/browser/android/webapps/single_tab_mode_tab_helper.cc
@@ -17,7 +17,8 @@ namespace {
typedef std::pair<int32_t, int32_t> RenderFrameHostID;
typedef std::set<RenderFrameHostID> SingleTabIDSet;
-base::LazyInstance<SingleTabIDSet> g_blocked_ids = LAZY_INSTANCE_INITIALIZER;
+base::LazyInstance<SingleTabIDSet>::DestructorAtExit g_blocked_ids =
+ LAZY_INSTANCE_INITIALIZER;
void AddPairOnIOThread(int32_t process_id, int32_t frame_routing_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
« no previous file with comments | « chrome/browser/android/ntp/ntp_snippets_launcher.cc ('k') | chrome/browser/autofill/validation_rules_storage_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698