Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Side by Side Diff: ios/web/public/web_state/crw_web_view_proxy.h

Issue 1646573002: WebViewProxy now propagates first responder status to the webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ios/web/web_state/crw_web_view_proxy_impl.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_WEB_PUBLIC_WEB_STATE_CRW_WEB_VIEW_PROXY_H_ 5 #ifndef IOS_WEB_PUBLIC_WEB_STATE_CRW_WEB_VIEW_PROXY_H_
6 #define IOS_WEB_PUBLIC_WEB_STATE_CRW_WEB_VIEW_PROXY_H_ 6 #define IOS_WEB_PUBLIC_WEB_STATE_CRW_WEB_VIEW_PROXY_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 #include "ios/web/public/web_view_type.h" 10 #include "ios/web/public/web_view_type.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 // Returns the currently visible keyboard accessory, or nil. 60 // Returns the currently visible keyboard accessory, or nil.
61 - (UIView*)keyboardAccessory; 61 - (UIView*)keyboardAccessory;
62 62
63 // Returns the currently visible keyboard input assistant item, or nil. Only 63 // Returns the currently visible keyboard input assistant item, or nil. Only
64 // valid on iOS 9 or above. 64 // valid on iOS 9 or above.
65 #if defined(__IPHONE_9_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_9_0 65 #if defined(__IPHONE_9_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_9_0
66 - (UITextInputAssistantItem*)inputAssistantItem; 66 - (UITextInputAssistantItem*)inputAssistantItem;
67 #endif 67 #endif
68 68
69 // Wrapper around the becomeFirstResponder method of the webview.
70 - (BOOL)becomeFirstResponder;
71
69 @end 72 @end
70 73
71 #endif // IOS_WEB_PUBLIC_WEB_STATE_CRW_WEB_VIEW_PROXY_H_ 74 #endif // IOS_WEB_PUBLIC_WEB_STATE_CRW_WEB_VIEW_PROXY_H_
OLDNEW
« no previous file with comments | « no previous file | ios/web/web_state/crw_web_view_proxy_impl.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698