// 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_TOUCH_SELECTION_TOUCH_SELECTION_MENU_RUNNER_H_ #define UI_TOUCH_SELECTION_TOUCH_SELECTION_MENU_RUNNER_H_ #include "base/memory/weak_ptr.h" #include "base/strings/string_util.h" #include "ui/touch_selection/ui_touch_selection_export.h" namespace aura { class Window; } namespace gfx { class Rect; class Size; } namespace ui { // Client interface for TouchSelectionMenuRunner. class UI_TOUCH_SELECTION_EXPORT TouchSelectionMenuClient { … }; // An interface for the singleton object responsible for running touch selection // quick menu. class UI_TOUCH_SELECTION_EXPORT TouchSelectionMenuRunner { … }; } // namespace ui #endif // UI_TOUCH_SELECTION_TOUCH_SELECTION_MENU_RUNNER_H_