blob: 69c5ee5e3d1799e2c573598c94aff672483bb3bf [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_OMNIBOX_UI_TEXT_FIELD_VIEW_CONTAINING_H_
#define IOS_CHROME_BROWSER_OMNIBOX_UI_TEXT_FIELD_VIEW_CONTAINING_H_
// A protocol that defines an object that contains a text field view.
@protocol TextFieldViewContaining
// A text field view.
@property(nonatomic, readonly) UIView* textFieldView;
@end
#endif // IOS_CHROME_BROWSER_OMNIBOX_UI_TEXT_FIELD_VIEW_CONTAINING_H_