// 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_VIEWS_CONTROLS_MENU_MENU_PRE_TARGET_HANDLER_H_ #define UI_VIEWS_CONTROLS_MENU_MENU_PRE_TARGET_HANDLER_H_ #include <memory> namespace views { class MenuController; class Widget; // A MenuPreTargetHandler is responsible for intercepting events destined for // another widget (the menu's owning widget) and letting the menu's controller // try dispatching them first. class MenuPreTargetHandler { … }; } // namespace views #endif // UI_VIEWS_CONTROLS_MENU_MENU_PRE_TARGET_HANDLER_H_