| Index: chrome/browser/ui/app_list/app_list_service_impl.cc
|
| diff --git a/chrome/browser/ui/app_list/app_list_service_impl.cc b/chrome/browser/ui/app_list/app_list_service_impl.cc
|
| index 9bf20e067f71292a057bff819a0d1a27a738aa52..00dcad6f41ccf880103917ee757504fc4f149d46 100644
|
| --- a/chrome/browser/ui/app_list/app_list_service_impl.cc
|
| +++ b/chrome/browser/ui/app_list/app_list_service_impl.cc
|
| @@ -86,13 +86,13 @@ class ProfileStoreImpl : public ProfileStore {
|
| weak_factory_(this) {
|
| }
|
|
|
| - virtual void AddProfileObserver(ProfileInfoCacheObserver* observer) OVERRIDE {
|
| + virtual void AddProfileObserver(ProfileInfoCacheObserver* observer) override {
|
| profile_manager_->GetProfileInfoCache().AddObserver(observer);
|
| }
|
|
|
| virtual void LoadProfileAsync(
|
| const base::FilePath& path,
|
| - base::Callback<void(Profile*)> callback) OVERRIDE {
|
| + base::Callback<void(Profile*)> callback) override {
|
| profile_manager_->CreateProfileAsync(
|
| path,
|
| base::Bind(&ProfileStoreImpl::OnProfileCreated,
|
| @@ -122,16 +122,16 @@ class ProfileStoreImpl : public ProfileStore {
|
| }
|
| }
|
|
|
| - virtual Profile* GetProfileByPath(const base::FilePath& path) OVERRIDE {
|
| + virtual Profile* GetProfileByPath(const base::FilePath& path) override {
|
| return profile_manager_->GetProfileByPath(path);
|
| }
|
|
|
| - virtual base::FilePath GetUserDataDir() OVERRIDE {
|
| + virtual base::FilePath GetUserDataDir() override {
|
| return profile_manager_->user_data_dir();
|
| }
|
|
|
| virtual bool IsProfileSupervised(
|
| - const base::FilePath& profile_path) OVERRIDE {
|
| + const base::FilePath& profile_path) override {
|
| ProfileInfoCache& profile_info =
|
| g_browser_process->profile_manager()->GetProfileInfoCache();
|
| size_t profile_index = profile_info.GetIndexOfProfileWithPath(profile_path);
|
|
|