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

Unified Diff: chrome/browser/chromeos/login/users/avatar/user_image_manager.h

Issue 376193002: Move UserImage to user_manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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: chrome/browser/chromeos/login/users/avatar/user_image_manager.h
diff --git a/chrome/browser/chromeos/login/users/avatar/user_image_manager.h b/chrome/browser/chromeos/login/users/avatar/user_image_manager.h
index a093635cf02f66cd6b6568aeda9d0d52ec1121d0..e0a745bb09e181f92e868ee0f9c28656714731a9 100644
--- a/chrome/browser/chromeos/login/users/avatar/user_image_manager.h
+++ b/chrome/browser/chromeos/login/users/avatar/user_image_manager.h
@@ -19,9 +19,12 @@ namespace gfx {
class ImageSkia;
}
+namespace user_manager {
+class UserImage;
+}
+
namespace chromeos {
-class UserImage;
class UserImageSyncObserver;
// Base class that provides a mechanism for updating user images.
@@ -46,7 +49,7 @@ class UserImageManager {
// Saves image to file, sends LOGIN_USER_IMAGE_CHANGED notification and
// updates Local State.
- virtual void SaveUserImage(const UserImage& user_image) = 0;
+ virtual void SaveUserImage(const user_manager::UserImage& user_image) = 0;
// Tries to load user image from disk; if successful, sets it for the user,
// sends LOGIN_USER_IMAGE_CHANGED notification and updates Local State.

Powered by Google App Engine
This is Rietveld 408576698