Index: trunk/src/chrome/browser/ui/webui/chromeos/login/hid_detection_screen_handler.cc |
=================================================================== |
--- trunk/src/chrome/browser/ui/webui/chromeos/login/hid_detection_screen_handler.cc (revision 276694) |
+++ trunk/src/chrome/browser/ui/webui/chromeos/login/hid_detection_screen_handler.cc (working copy) |
@@ -64,11 +64,9 @@ |
namespace chromeos { |
-HIDDetectionScreenHandler::HIDDetectionScreenHandler( |
- CoreOobeActor* core_oobe_actor) |
+HIDDetectionScreenHandler::HIDDetectionScreenHandler() |
: BaseScreenHandler(kJsScreenPath), |
delegate_(NULL), |
- core_oobe_actor_(core_oobe_actor), |
show_on_init_(false), |
mouse_is_pairing_(false), |
keyboard_is_pairing_(false), |
@@ -105,7 +103,6 @@ |
show_on_init_ = true; |
return; |
} |
- core_oobe_actor_->InitDemoModeDetection(); |
input_service_proxy_.AddObserver(this); |
first_time_screen_show_ = true; |
GetDevicesFirstTime(); |
@@ -177,7 +174,6 @@ |
scenario_type, |
CONTINUE_SCENARIO_TYPE_SIZE); |
} |
- core_oobe_actor_->StopDemoModeDetection(); |
if (delegate_) |
delegate_->OnExit(); |
} |