chromium/ui/aura/null_window_targeter.h

// Copyright 2018 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_AURA_NULL_WINDOW_TARGETER_H_
#define UI_AURA_NULL_WINDOW_TARGETER_H_

#include "ui/aura/aura_export.h"
#include "ui/aura/window_targeter.h"

namespace aura {

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

}  // namespace aura

#endif  // UI_AURA_NULL_WINDOW_TARGETER_H_