blob: cdc357183f575c1a509d67123ace48cb45c301ab [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_TEXT_FIELD_DELEGATE_H_
#define IOS_CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_TEXT_FIELD_DELEGATE_H_
#import <UIKit/UIKit.h>
@protocol OmniboxTextFieldDelegate<UITextFieldDelegate>
@optional
// Called when the OmniboxTextFieldIOS performs a copy operation. Returns YES
// if the delegate handled the copy operation itself. If the delegate returns
// NO, the field must perform the copy. Some platforms (iOS 4) do not expose an
// API that allows the delegate to handle the copy.
- (BOOL)onCopy;
// Called before the OmniboxTextFieldIOS performs a paste operation.
- (void)willPaste;
// Called when the backspace button is tapped in the OmniboxTextFieldIOS.
- (void)onDeleteBackward;
@end
#endif // IOS_CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_TEXT_FIELD_DELEGATE_H_