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

Side by Side Diff: ios/web/web_state/ui/crw_web_controller.mm

Issue 1458073002: Import url_scheme_util.h instead of including it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « ios/web/web_state/ui/crw_ui_web_view_web_controller.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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/ui/crw_web_controller.h" 5 #import "ios/web/web_state/ui/crw_web_controller.h"
6 6
7 #import <objc/runtime.h> 7 #import <objc/runtime.h>
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "base/ios/block_types.h" 10 #include "base/ios/block_types.h"
(...skipping 28 matching lines...) Expand all
39 #import "ios/web/navigation/navigation_item_impl.h" 39 #import "ios/web/navigation/navigation_item_impl.h"
40 #import "ios/web/navigation/navigation_manager_impl.h" 40 #import "ios/web/navigation/navigation_manager_impl.h"
41 #import "ios/web/navigation/web_load_params.h" 41 #import "ios/web/navigation/web_load_params.h"
42 #include "ios/web/net/request_group_util.h" 42 #include "ios/web/net/request_group_util.h"
43 #include "ios/web/public/browser_state.h" 43 #include "ios/web/public/browser_state.h"
44 #include "ios/web/public/favicon_url.h" 44 #include "ios/web/public/favicon_url.h"
45 #include "ios/web/public/navigation_item.h" 45 #include "ios/web/public/navigation_item.h"
46 #include "ios/web/public/referrer.h" 46 #include "ios/web/public/referrer.h"
47 #include "ios/web/public/referrer_util.h" 47 #include "ios/web/public/referrer_util.h"
48 #include "ios/web/public/ssl_status.h" 48 #include "ios/web/public/ssl_status.h"
49 #include "ios/web/public/url_scheme_util.h" 49 #import "ios/web/public/url_scheme_util.h"
50 #include "ios/web/public/url_util.h" 50 #include "ios/web/public/url_util.h"
51 #include "ios/web/public/user_metrics.h" 51 #include "ios/web/public/user_metrics.h"
52 #include "ios/web/public/web_client.h" 52 #include "ios/web/public/web_client.h"
53 #include "ios/web/public/web_kit_constants.h" 53 #include "ios/web/public/web_kit_constants.h"
54 #include "ios/web/public/web_state/credential.h" 54 #include "ios/web/public/web_state/credential.h"
55 #import "ios/web/public/web_state/crw_web_controller_observer.h" 55 #import "ios/web/public/web_state/crw_web_controller_observer.h"
56 #import "ios/web/public/web_state/crw_web_view_scroll_view_proxy.h" 56 #import "ios/web/public/web_state/crw_web_view_scroll_view_proxy.h"
57 #import "ios/web/public/web_state/js/crw_js_injection_manager.h" 57 #import "ios/web/public/web_state/js/crw_js_injection_manager.h"
58 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" 58 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h"
59 #import "ios/web/public/web_state/ui/crw_content_view.h" 59 #import "ios/web/public/web_state/ui/crw_content_view.h"
(...skipping 3792 matching lines...) Expand 10 before | Expand all | Expand 10 after
3852 if (!_externalRequest || !_externalRequest->window_name) 3852 if (!_externalRequest || !_externalRequest->window_name)
3853 return @""; 3853 return @"";
3854 return _externalRequest->window_name; 3854 return _externalRequest->window_name;
3855 } 3855 }
3856 3856
3857 - (void)resetExternalRequest { 3857 - (void)resetExternalRequest {
3858 _externalRequest.reset(); 3858 _externalRequest.reset();
3859 } 3859 }
3860 3860
3861 @end 3861 @end
OLDNEW
« no previous file with comments | « ios/web/web_state/ui/crw_ui_web_view_web_controller.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698