This source file includes following definitions.
- DispatchCancelMode
#include "ash/cancel_mode.h"
#include "ash/root_window_controller.h"
#include "ash/shell.h"
#include "ui/aura/window_event_dispatcher.h"
namespace ash {
void DispatchCancelMode() {
Shell::RootWindowControllerList controllers(
Shell::GetAllRootWindowControllers());
for (Shell::RootWindowControllerList::const_iterator i = controllers.begin();
i != controllers.end(); ++i) {
(*i)->host()->dispatcher()->DispatchCancelModeEvent();
}
}
}