Chromium Code Reviews| Index: chrome/browser/chromeos/login/ui/input_events_blocker.cc |
| diff --git a/chrome/browser/chromeos/login/ui/input_events_blocker.cc b/chrome/browser/chromeos/login/ui/input_events_blocker.cc |
| index 686c9070fde532f1a4f327d0040f40797effffa8..afdd86890e003baa4892c644c4b9282f287ecef6 100644 |
| --- a/chrome/browser/chromeos/login/ui/input_events_blocker.cc |
| +++ b/chrome/browser/chromeos/login/ui/input_events_blocker.cc |
| @@ -11,12 +11,16 @@ |
| namespace chromeos { |
| InputEventsBlocker::InputEventsBlocker() { |
| +#if !defined(USE_ATHENA) |
| ash::Shell::GetInstance()->PrependPreTargetHandler(this); |
|
oshima
2014/09/09 06:32:50
I assume we eventually need this?
Dmitry Polukhin
2014/09/10 20:30:23
It is part of supporting local switching, added li
|
| +#endif |
| VLOG(1) << "InputEventsBlocker " << this << " created."; |
| } |
| InputEventsBlocker::~InputEventsBlocker() { |
| +#if !defined(USE_ATHENA) |
| ash::Shell::GetInstance()->RemovePreTargetHandler(this); |
| +#endif |
| VLOG(1) << "InputEventsBlocker " << this << " destroyed."; |
| } |