chromium/ui/events/null_event_targeter.h

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_EVENTS_NULL_EVENT_TARGETER_H_
#define UI_EVENTS_NULL_EVENT_TARGETER_H_

#include "ui/events/event_targeter.h"
#include "ui/events/events_export.h"

namespace ui {

// NullEventTargeter can be installed on a root window to prevent it from
// dispatching events such as during shutdown.
class EVENTS_EXPORT NullEventTargeter : public EventTargeter {};

}  // namespace ui

#endif  // UI_EVENTS_NULL_EVENT_TARGETER_H_