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

Unified Diff: chrome/browser/chromeos/login/screens/hid_detection_view.h

Issue 2638123002: cros: Fold HIDDetectionModel into HIDDetectionScreen. (Closed)
Patch Set: Nit Created 3 years, 11 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/screens/hid_detection_view.h
diff --git a/chrome/browser/chromeos/login/screens/hid_detection_view.h b/chrome/browser/chromeos/login/screens/hid_detection_view.h
index f325fcbe58e1c33ad4a295ee02189d9f9df28fc5..34a19c8a44240ea2cae5730f660897c6115f1daa 100644
--- a/chrome/browser/chromeos/login/screens/hid_detection_view.h
+++ b/chrome/browser/chromeos/login/screens/hid_detection_view.h
@@ -11,7 +11,7 @@
namespace chromeos {
-class HIDDetectionModel;
+class HIDDetectionScreen;
// Interface between HID detection screen and its representation, either WebUI
// or Views one. Note, do not forget to call OnViewDestroyed in the
@@ -22,7 +22,7 @@ class HIDDetectionView {
virtual void Show() = 0;
virtual void Hide() = 0;
- virtual void Bind(HIDDetectionModel& model) = 0;
+ virtual void Bind(HIDDetectionScreen* screen) = 0;
virtual void Unbind() = 0;
// Checks if we should show the screen or enough devices already present.
// Calls corresponding set of actions based on the bool result.

Powered by Google App Engine
This is Rietveld 408576698