| 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 17 matching lines...) Expand all Loading... |
| 28 #include "base/mac/foundation_util.h" | 28 #include "base/mac/foundation_util.h" |
| 29 #include "base/mac/objc_property_releaser.h" | 29 #include "base/mac/objc_property_releaser.h" |
| 30 #import "base/mac/scoped_block.h" | 30 #import "base/mac/scoped_block.h" |
| 31 #import "base/mac/scoped_nsobject.h" | 31 #import "base/mac/scoped_nsobject.h" |
| 32 #include "base/macros.h" | 32 #include "base/macros.h" |
| 33 #include "base/memory/ptr_util.h" | 33 #include "base/memory/ptr_util.h" |
| 34 #include "base/metrics/histogram_macros.h" | 34 #include "base/metrics/histogram_macros.h" |
| 35 #include "base/metrics/user_metrics.h" | 35 #include "base/metrics/user_metrics.h" |
| 36 #include "base/metrics/user_metrics_action.h" | 36 #include "base/metrics/user_metrics_action.h" |
| 37 #include "base/strings/sys_string_conversions.h" | 37 #include "base/strings/sys_string_conversions.h" |
| 38 #include "base/threading/sequenced_worker_pool.h" |
| 38 #include "components/bookmarks/browser/base_bookmark_model_observer.h" | 39 #include "components/bookmarks/browser/base_bookmark_model_observer.h" |
| 39 #include "components/bookmarks/browser/bookmark_model.h" | 40 #include "components/bookmarks/browser/bookmark_model.h" |
| 40 #include "components/image_fetcher/ios/ios_image_data_fetcher_wrapper.h" | 41 #include "components/image_fetcher/ios/ios_image_data_fetcher_wrapper.h" |
| 41 #include "components/infobars/core/infobar_manager.h" | 42 #include "components/infobars/core/infobar_manager.h" |
| 42 #include "components/prefs/pref_service.h" | 43 #include "components/prefs/pref_service.h" |
| 43 #include "components/reading_list/core/reading_list_switches.h" | 44 #include "components/reading_list/core/reading_list_switches.h" |
| 44 #include "components/reading_list/ios/reading_list_model.h" | 45 #include "components/reading_list/ios/reading_list_model.h" |
| 45 #include "components/search_engines/search_engines_pref_names.h" | 46 #include "components/search_engines/search_engines_pref_names.h" |
| 46 #include "components/search_engines/template_url_service.h" | 47 #include "components/search_engines/template_url_service.h" |
| 47 #include "components/sessions/core/tab_restore_service_helper.h" | 48 #include "components/sessions/core/tab_restore_service_helper.h" |
| (...skipping 4949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4997 | 4998 |
| 4998 - (UIView*)voiceSearchButton { | 4999 - (UIView*)voiceSearchButton { |
| 4999 return _voiceSearchButton; | 5000 return _voiceSearchButton; |
| 5000 } | 5001 } |
| 5001 | 5002 |
| 5002 - (id<LogoAnimationControllerOwner>)logoAnimationControllerOwner { | 5003 - (id<LogoAnimationControllerOwner>)logoAnimationControllerOwner { |
| 5003 return [self currentLogoAnimationControllerOwner]; | 5004 return [self currentLogoAnimationControllerOwner]; |
| 5004 } | 5005 } |
| 5005 | 5006 |
| 5006 @end | 5007 @end |
| OLD | NEW |