| Index: chrome/browser/chromeos/login/signin/merge_session_throttling_utils.cc
|
| diff --git a/chrome/browser/chromeos/login/signin/merge_session_throttling_utils.cc b/chrome/browser/chromeos/login/signin/merge_session_throttling_utils.cc
|
| index edab4bdd1a568f944ed3f5731660449dde17fbfd..49e51f4a4a5c74373b51018614fb8d71d1754736 100644
|
| --- a/chrome/browser/chromeos/login/signin/merge_session_throttling_utils.cc
|
| +++ b/chrome/browser/chromeos/login/signin/merge_session_throttling_utils.cc
|
| @@ -41,14 +41,15 @@ class ProfileSet : public base::NonThreadSafe, public std::set<Profile*> {
|
| static ProfileSet* Get();
|
|
|
| private:
|
| - friend struct ::base::DefaultLazyInstanceTraits<ProfileSet>;
|
| + friend struct ::base::LazyInstanceTraitsBase<ProfileSet>;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ProfileSet);
|
| };
|
|
|
| // Set of all of profiles for which restore session is in progress.
|
| // This static member is accessible only form UI thread.
|
| -base::LazyInstance<ProfileSet> g_blocked_profiles = LAZY_INSTANCE_INITIALIZER;
|
| +base::LazyInstance<ProfileSet>::DestructorAtExit g_blocked_profiles =
|
| + LAZY_INSTANCE_INITIALIZER;
|
|
|
| ProfileSet* ProfileSet::Get() {
|
| return g_blocked_profiles.Pointer();
|
|
|