| OLD | NEW |
| 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/chrome/browser/ui/browser_view_controller.h" | 5 #import "ios/chrome/browser/ui/browser_view_controller.h" |
| 6 | 6 |
| 7 #import <AssetsLibrary/AssetsLibrary.h> | 7 #import <AssetsLibrary/AssetsLibrary.h> |
| 8 #import <MobileCoreServices/MobileCoreServices.h> | 8 #import <MobileCoreServices/MobileCoreServices.h> |
| 9 #import <PassKit/PassKit.h> | 9 #import <PassKit/PassKit.h> |
| 10 #import <Photos/Photos.h> | 10 #import <Photos/Photos.h> |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 #include "ios/web/navigation/navigation_manager_impl.h" | 176 #include "ios/web/navigation/navigation_manager_impl.h" |
| 177 #include "ios/web/public/active_state_manager.h" | 177 #include "ios/web/public/active_state_manager.h" |
| 178 #include "ios/web/public/navigation_item.h" | 178 #include "ios/web/public/navigation_item.h" |
| 179 #import "ios/web/public/navigation_manager.h" | 179 #import "ios/web/public/navigation_manager.h" |
| 180 #include "ios/web/public/referrer_util.h" | 180 #include "ios/web/public/referrer_util.h" |
| 181 #include "ios/web/public/ssl_status.h" | 181 #include "ios/web/public/ssl_status.h" |
| 182 #include "ios/web/public/url_scheme_util.h" | 182 #include "ios/web/public/url_scheme_util.h" |
| 183 #include "ios/web/public/user_agent.h" | 183 #include "ios/web/public/user_agent.h" |
| 184 #include "ios/web/public/web_client.h" | 184 #include "ios/web/public/web_client.h" |
| 185 #import "ios/web/public/web_state/context_menu_params.h" | 185 #import "ios/web/public/web_state/context_menu_params.h" |
| 186 #import "ios/web/public/web_state/crw_web_view_proxy.h" | |
| 187 #import "ios/web/public/web_state/ui/crw_native_content_provider.h" | 186 #import "ios/web/public/web_state/ui/crw_native_content_provider.h" |
| 187 #import "ios/web/public/web_state/ui/crw_web_view_proxy.h" |
| 188 #include "ios/web/public/web_state/web_state.h" | 188 #include "ios/web/public/web_state/web_state.h" |
| 189 #import "ios/web/public/web_state/web_state_delegate_bridge.h" | 189 #import "ios/web/public/web_state/web_state_delegate_bridge.h" |
| 190 #include "ios/web/public/web_thread.h" | 190 #include "ios/web/public/web_thread.h" |
| 191 #import "ios/web/web_state/ui/crw_web_controller.h" | 191 #import "ios/web/web_state/ui/crw_web_controller.h" |
| 192 #import "net/base/mac/url_conversions.h" | 192 #import "net/base/mac/url_conversions.h" |
| 193 #include "net/base/mime_util.h" | 193 #include "net/base/mime_util.h" |
| 194 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 194 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
| 195 #include "net/ssl/ssl_info.h" | 195 #include "net/ssl/ssl_info.h" |
| 196 #include "net/url_request/url_request_context_getter.h" | 196 #include "net/url_request/url_request_context_getter.h" |
| 197 #include "third_party/google_toolbox_for_mac/src/iPhone/GTMUIImage+Resize.h" | 197 #include "third_party/google_toolbox_for_mac/src/iPhone/GTMUIImage+Resize.h" |
| (...skipping 4931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5129 | 5129 |
| 5130 - (UIView*)voiceSearchButton { | 5130 - (UIView*)voiceSearchButton { |
| 5131 return _voiceSearchButton; | 5131 return _voiceSearchButton; |
| 5132 } | 5132 } |
| 5133 | 5133 |
| 5134 - (id<LogoAnimationControllerOwner>)logoAnimationControllerOwner { | 5134 - (id<LogoAnimationControllerOwner>)logoAnimationControllerOwner { |
| 5135 return [self currentLogoAnimationControllerOwner]; | 5135 return [self currentLogoAnimationControllerOwner]; |
| 5136 } | 5136 } |
| 5137 | 5137 |
| 5138 @end | 5138 @end |
| OLD | NEW |