| Index: chrome/browser/ui/app_list/profile_loader.cc
|
| diff --git a/chrome/browser/ui/app_list/profile_loader.cc b/chrome/browser/ui/app_list/profile_loader.cc
|
| index ec8d9a4e4103d1c7b1245cadd7d168a92cbd2ecf..32b3c42000bbe3ce9945e448a5d0c36ccc327a45 100644
|
| --- a/chrome/browser/ui/app_list/profile_loader.cc
|
| +++ b/chrome/browser/ui/app_list/profile_loader.cc
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/files/file_path.h"
|
| -#include "chrome/browser/apps/scoped_keep_alive.h"
|
| +#include "chrome/browser/lifetime/scoped_keep_alive.h"
|
| #include "chrome/browser/ui/app_list/profile_store.h"
|
| #include "chrome/browser/ui/user_manager.h"
|
|
|
| @@ -66,7 +66,7 @@ void ProfileLoader::OnProfileLoaded(int profile_load_sequence_id,
|
| void ProfileLoader::IncrementPendingProfileLoads() {
|
| pending_profile_loads_++;
|
| if (pending_profile_loads_ == 1)
|
| - keep_alive_.reset(new ScopedKeepAlive);
|
| + keep_alive_.reset(new ScopedKeepAlive("ProfileLoader"));
|
| }
|
|
|
| void ProfileLoader::DecrementPendingProfileLoads() {
|
|
|