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

Unified Diff: chrome/browser/ui/webui/settings/people_handler.h

Issue 1723643002: Refactor ProfileInfoCache in c/b/ui/webui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a signed/unsigned integer conversion, one removed #include Created 4 years, 10 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
« no previous file with comments | « chrome/browser/ui/webui/profile_info_watcher.cc ('k') | chrome/browser/ui/webui/settings/people_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/settings/people_handler.h
diff --git a/chrome/browser/ui/webui/settings/people_handler.h b/chrome/browser/ui/webui/settings/people_handler.h
index 5a5a4ae22c25e2dcd9ca2babb51f64f41cb5e3fc..0ae1476e8aceb965145a9d894f49303e50280edf 100644
--- a/chrome/browser/ui/webui/settings/people_handler.h
+++ b/chrome/browser/ui/webui/settings/people_handler.h
@@ -12,7 +12,7 @@
#include "base/strings/utf_string_conversions.h"
#include "base/timer/timer.h"
#include "build/build_config.h"
-#include "chrome/browser/profiles/profile_info_cache_observer.h"
+#include "chrome/browser/profiles/profile_attributes_storage.h"
#include "chrome/browser/sync/sync_startup_tracker.h"
#include "chrome/browser/ui/webui/signin/login_ui_service.h"
#include "components/prefs/pref_change_registrar.h"
@@ -48,7 +48,7 @@ class PeopleHandler : public content::WebUIMessageHandler,
#if defined(OS_CHROMEOS)
public content::NotificationObserver,
#endif
- public ProfileInfoCacheObserver {
+ public ProfileAttributesStorage::Observer {
public:
explicit PeopleHandler(Profile* profile);
~PeopleHandler() override;
@@ -81,7 +81,7 @@ class PeopleHandler : public content::WebUIMessageHandler,
const content::NotificationDetails& details) override;
#endif
- // ProfileInfoCacheObserver implementation.
+ // ProfileAttributesStorage::Observer implementation.
void OnProfileNameChanged(const base::FilePath& profile_path,
const base::string16& old_profile_name) override;
void OnProfileAvatarChanged(const base::FilePath& profile_path) override;
« no previous file with comments | « chrome/browser/ui/webui/profile_info_watcher.cc ('k') | chrome/browser/ui/webui/settings/people_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698