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

Side by Side Diff: ios/web/web_state/crw_web_view_proxy_impl.mm

Issue 2605913002: Fix include import in ios/web (Closed)
Patch Set: add missing #import Created 3 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
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 #import "ios/web/web_state/crw_web_view_proxy_impl.h" 5 #import "ios/web/web_state/crw_web_view_proxy_impl.h"
6 6
7 #include "base/mac/scoped_nsobject.h" 7 #import "base/mac/scoped_nsobject.h"
8 #import "ios/web/public/web_state/crw_web_view_scroll_view_proxy.h" 8 #import "ios/web/public/web_state/crw_web_view_scroll_view_proxy.h"
9 #import "ios/web/public/web_state/ui/crw_content_view.h" 9 #import "ios/web/public/web_state/ui/crw_content_view.h"
10 #import "ios/web/web_state/ui/crw_web_controller.h" 10 #import "ios/web/web_state/ui/crw_web_controller.h"
11 11
12 #if !defined(__has_feature) || !__has_feature(objc_arc) 12 #if !defined(__has_feature) || !__has_feature(objc_arc)
13 #error "This file requires ARC support." 13 #error "This file requires ARC support."
14 #endif 14 #endif
15 15
16 namespace { 16 namespace {
17 17
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 return nil; 173 return nil;
174 UIView* firstResponder = GetFirstResponderSubview(_contentView); 174 UIView* firstResponder = GetFirstResponderSubview(_contentView);
175 return firstResponder.inputAssistantItem; 175 return firstResponder.inputAssistantItem;
176 } 176 }
177 177
178 - (BOOL)becomeFirstResponder { 178 - (BOOL)becomeFirstResponder {
179 return [_contentView becomeFirstResponder]; 179 return [_contentView becomeFirstResponder];
180 } 180 }
181 181
182 @end 182 @end
OLDNEW
« no previous file with comments | « ios/web/web_state/crw_web_view_proxy_impl.h ('k') | ios/web/web_state/error_translation_util.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698