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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/user_image_screen_handler.h

Issue 2555783003: cros: Remove unused method (Closed)
Patch Set: Created 4 years 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_UI_WEBUI_CHROMEOS_LOGIN_USER_IMAGE_SCREEN_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_IMAGE_SCREEN_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_IMAGE_SCREEN_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_IMAGE_SCREEN_HANDLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 19 matching lines...) Expand all
30 ::login::LocalizedValuesBuilder* builder) override; 30 ::login::LocalizedValuesBuilder* builder) override;
31 31
32 // WebUIMessageHandler implementation: 32 // WebUIMessageHandler implementation:
33 void RegisterMessages() override; 33 void RegisterMessages() override;
34 34
35 // UserImageView implementation: 35 // UserImageView implementation:
36 void Bind(UserImageModel& model) override; 36 void Bind(UserImageModel& model) override;
37 void Unbind() override; 37 void Unbind() override;
38 void Show() override; 38 void Show() override;
39 void Hide() override; 39 void Hide() override;
40 void PrepareToShow() override;
41 void HideCurtain() override; 40 void HideCurtain() override;
42 41
43 private: 42 private:
44 // Sends image data to the page. 43 // Sends image data to the page.
45 void HandleGetImages(); 44 void HandleGetImages();
46 45
47 // Screen ready to be shown. 46 // Screen ready to be shown.
48 void HandleScreenReady(); 47 void HandleScreenReady();
49 48
50 // Handles photo taken with WebRTC UI. 49 // Handles photo taken with WebRTC UI.
(...skipping 25 matching lines...) Expand all
76 bool is_ready_; 75 bool is_ready_;
77 76
78 base::Time screen_show_time_; 77 base::Time screen_show_time_;
79 78
80 DISALLOW_COPY_AND_ASSIGN(UserImageScreenHandler); 79 DISALLOW_COPY_AND_ASSIGN(UserImageScreenHandler);
81 }; 80 };
82 81
83 } // namespace chromeos 82 } // namespace chromeos
84 83
85 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_IMAGE_SCREEN_HANDLER_H_ 84 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_USER_IMAGE_SCREEN_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698