// Copyright 2013 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_PREFIX_DELEGATE_H_ #define UI_VIEWS_CONTROLS_PREFIX_DELEGATE_H_ #include <optional> #include "ui/views/view.h" #include "ui/views/views_export.h" namespace views { // An interface used to expose lists of items for selection by text input. class VIEWS_EXPORT PrefixDelegate { … }; } // namespace views #endif // UI_VIEWS_CONTROLS_PREFIX_DELEGATE_H_