OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SUPERVISED_SUPERVISED_USER_CREATION_SCREEN
_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_SCREEN
_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_SCREEN
_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_SCREEN
_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 110 |
111 // TODO(antrim) : this is an explicit code duplications with UserImageScreen. | 111 // TODO(antrim) : this is an explicit code duplications with UserImageScreen. |
112 // It should be removed by issue 251179. | 112 // It should be removed by issue 251179. |
113 | 113 |
114 // SupervisedUserCreationScreenHandler::Delegate (image) implementation: | 114 // SupervisedUserCreationScreenHandler::Delegate (image) implementation: |
115 void OnPhotoTaken(const std::string& raw_data) override; | 115 void OnPhotoTaken(const std::string& raw_data) override; |
116 void OnImageSelected(const std::string& image_url, | 116 void OnImageSelected(const std::string& image_url, |
117 const std::string& image_type) override; | 117 const std::string& image_type) override; |
118 void OnImageAccepted() override; | 118 void OnImageAccepted() override; |
119 // ImageDecoder::Delegate overrides: | 119 // ImageDecoder::Delegate overrides: |
120 void OnImageDecoded(const ImageDecoder* decoder, | 120 void OnImageDecoded(const SkBitmap& decoded_image) override; |
121 const SkBitmap& decoded_image) override; | 121 void OnDecodeImageFailed() override; |
122 void OnDecodeImageFailed(const ImageDecoder* decoder) override; | |
123 | 122 |
124 private: | 123 private: |
125 void ApplyPicture(); | 124 void ApplyPicture(); |
126 void OnGetSupervisedUsers(const base::DictionaryValue* users); | 125 void OnGetSupervisedUsers(const base::DictionaryValue* users); |
127 | 126 |
128 SupervisedUserCreationScreenHandler* actor_; | 127 SupervisedUserCreationScreenHandler* actor_; |
129 | 128 |
130 scoped_ptr<SupervisedUserCreationController> controller_; | 129 scoped_ptr<SupervisedUserCreationController> controller_; |
131 scoped_ptr<base::DictionaryValue> existing_users_; | 130 scoped_ptr<base::DictionaryValue> existing_users_; |
132 | 131 |
133 bool on_error_screen_; | 132 bool on_error_screen_; |
134 bool manager_signin_in_progress_; | 133 bool manager_signin_in_progress_; |
135 std::string last_page_; | 134 std::string last_page_; |
136 | 135 |
137 SupervisedUserSyncService* sync_service_; | 136 SupervisedUserSyncService* sync_service_; |
138 | 137 |
139 gfx::ImageSkia user_photo_; | 138 gfx::ImageSkia user_photo_; |
140 scoped_refptr<ImageDecoder> image_decoder_; | |
141 bool apply_photo_after_decoding_; | 139 bool apply_photo_after_decoding_; |
142 int selected_image_; | 140 int selected_image_; |
143 | 141 |
144 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; | 142 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; |
145 | 143 |
146 base::WeakPtrFactory<SupervisedUserCreationScreen> weak_factory_; | 144 base::WeakPtrFactory<SupervisedUserCreationScreen> weak_factory_; |
147 | 145 |
148 DISALLOW_COPY_AND_ASSIGN(SupervisedUserCreationScreen); | 146 DISALLOW_COPY_AND_ASSIGN(SupervisedUserCreationScreen); |
149 }; | 147 }; |
150 | 148 |
151 } // namespace chromeos | 149 } // namespace chromeos |
152 | 150 |
153 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_SCR
EEN_H_ | 151 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SUPERVISED_SUPERVISED_USER_CREATION_SCR
EEN_H_ |
154 | 152 |
OLD | NEW |