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

Side by Side Diff: chrome/browser/chromeos/login/screens/user_image_model.h

Issue 2666893002: Delete "Google Profile photo" for the Active Directory (Closed)
Patch Set: Comment Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screens/user_image_model.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_MODEL_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_MODEL_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_MODEL_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_MODEL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "chrome/browser/chromeos/login/screens/base_screen.h" 10 #include "chrome/browser/chromeos/login/screens/base_screen.h"
11 11
12 namespace chromeos { 12 namespace chromeos {
13 13
14 class BaseScreenDelegate; 14 class BaseScreenDelegate;
15 class UserImageView; 15 class UserImageView;
16 16
17 class UserImageModel : public BaseScreen { 17 class UserImageModel : public BaseScreen {
18 public: 18 public:
19 static const char kContextKeyIsCameraPresent[]; 19 static const char kContextKeyIsCameraPresent[];
20 static const char kContextKeySelectedImageURL[]; 20 static const char kContextKeySelectedImageURL[];
21 static const char kContextKeyProfilePictureDataURL[]; 21 static const char kContextKeyProfilePictureDataURL[];
22 static const char kContextKeyHasGaiaAccount[];
22 23
23 explicit UserImageModel(BaseScreenDelegate* base_screen_delegate); 24 explicit UserImageModel(BaseScreenDelegate* base_screen_delegate);
24 ~UserImageModel() override; 25 ~UserImageModel() override;
25 26
26 // Called when UI ready to be shown. 27 // Called when UI ready to be shown.
27 virtual void OnScreenReady() = 0; 28 virtual void OnScreenReady() = 0;
28 29
29 // Called when user accepts photo as login user image. 30 // Called when user accepts photo as login user image.
30 virtual void OnPhotoTaken(const std::string& raw_data) = 0; 31 virtual void OnPhotoTaken(const std::string& raw_data) = 0;
31 32
32 // Called when some image was selected. |is_user_selection| indicates if 33 // Called when some image was selected. |is_user_selection| indicates if
33 // it was user selection or image was selected programmatically. 34 // it was user selection or image was selected programmatically.
34 virtual void OnImageSelected(const std::string& image_url, 35 virtual void OnImageSelected(const std::string& image_url,
35 const std::string& image_type, 36 const std::string& image_type,
36 bool is_user_selection) = 0; 37 bool is_user_selection) = 0;
37 38
38 // Called when user accepts currently selected image 39 // Called when user accepts currently selected image
39 virtual void OnImageAccepted() = 0; 40 virtual void OnImageAccepted() = 0;
40 41
41 // Called when actor is destroyed so there's no dead reference to it. 42 // Called when actor is destroyed so there's no dead reference to it.
42 virtual void OnViewDestroyed(UserImageView* view) = 0; 43 virtual void OnViewDestroyed(UserImageView* view) = 0;
43 }; 44 };
44 45
45 } // namespace chromeos 46 } // namespace chromeos
46 47
47 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_MODEL_H_ 48 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_MODEL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screens/user_image_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698