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

Unified Diff: extensions/browser/guest_view/app_view/app_view_guest.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: extensions/browser/guest_view/app_view/app_view_guest.cc
diff --git a/extensions/browser/guest_view/app_view/app_view_guest.cc b/extensions/browser/guest_view/app_view/app_view_guest.cc
index be13b200a7dd3bc3744073baafcaa2d00a4bb356..d153e31dc95807879cdc2e3dc0be6daa1b752e6e 100644
--- a/extensions/browser/guest_view/app_view/app_view_guest.cc
+++ b/extensions/browser/guest_view/app_view/app_view_guest.cc
@@ -54,8 +54,8 @@ struct ResponseInfo {
};
using PendingResponseMap = std::map<int, std::unique_ptr<ResponseInfo>>;
-static base::LazyInstance<PendingResponseMap> pending_response_map =
- LAZY_INSTANCE_INITIALIZER;
+static base::LazyInstance<PendingResponseMap>::DestructorAtExit
+ pending_response_map = LAZY_INSTANCE_INITIALIZER;
} // namespace
« no previous file with comments | « extensions/browser/extension_function_dispatcher.cc ('k') | extensions/browser/guest_view/guest_view_events.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698