| 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 43ad7da65fdb235ad400750b7f9c72ed4349b804..f48e5bc593605d47cfa43f0089c79f2281a4f803 100644
|
| --- a/chrome/browser/chromeos/login/ui/input_events_blocker.cc
|
| +++ b/chrome/browser/chromeos/login/ui/input_events_blocker.cc
|
| @@ -14,7 +14,7 @@ namespace chromeos {
|
| InputEventsBlocker::InputEventsBlocker() {
|
| // TODO(mash): Implement a mash version. This will probably need to talk to
|
| // the window server.
|
| - if (!ash_util::IsRunningInMash()) {
|
| + if (!IsRunningInMash()) {
|
| ash::Shell::GetInstance()->PrependPreTargetHandler(this);
|
| VLOG(1) << "InputEventsBlocker " << this << " created.";
|
| } else {
|
| @@ -23,7 +23,7 @@ InputEventsBlocker::InputEventsBlocker() {
|
| }
|
|
|
| InputEventsBlocker::~InputEventsBlocker() {
|
| - if (!ash_util::IsRunningInMash()) {
|
| + if (!IsRunningInMash()) {
|
| ash::Shell::GetInstance()->RemovePreTargetHandler(this);
|
| VLOG(1) << "InputEventsBlocker " << this << " destroyed.";
|
| } else {
|
|
|