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

Side by Side Diff: ios/chrome/browser/ui/browser_view_controller.mm

Issue 2763233003: Move ReadingList model to components/reading_list/core (Closed)
Patch Set: feedback Created 3 years, 9 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 | « ios/chrome/browser/ui/activity_services/BUILD.gn ('k') | ios/chrome/browser/ui/ntp/BUILD.gn » ('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 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 23 matching lines...) Expand all
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 "base/threading/sequenced_worker_pool.h"
39 #include "components/bookmarks/browser/base_bookmark_model_observer.h" 39 #include "components/bookmarks/browser/base_bookmark_model_observer.h"
40 #include "components/bookmarks/browser/bookmark_model.h" 40 #include "components/bookmarks/browser/bookmark_model.h"
41 #include "components/image_fetcher/ios/ios_image_data_fetcher_wrapper.h" 41 #include "components/image_fetcher/ios/ios_image_data_fetcher_wrapper.h"
42 #include "components/infobars/core/infobar_manager.h" 42 #include "components/infobars/core/infobar_manager.h"
43 #include "components/prefs/pref_service.h" 43 #include "components/prefs/pref_service.h"
44 #include "components/reading_list/core/reading_list_model.h"
44 #include "components/reading_list/core/reading_list_switches.h" 45 #include "components/reading_list/core/reading_list_switches.h"
45 #include "components/reading_list/ios/reading_list_model.h"
46 #include "components/search_engines/search_engines_pref_names.h" 46 #include "components/search_engines/search_engines_pref_names.h"
47 #include "components/search_engines/template_url_service.h" 47 #include "components/search_engines/template_url_service.h"
48 #include "components/sessions/core/tab_restore_service_helper.h" 48 #include "components/sessions/core/tab_restore_service_helper.h"
49 #include "components/strings/grit/components_strings.h" 49 #include "components/strings/grit/components_strings.h"
50 #include "components/toolbar/toolbar_model_impl.h" 50 #include "components/toolbar/toolbar_model_impl.h"
51 #include "ios/chrome/app/tests_hook.h" 51 #include "ios/chrome/app/tests_hook.h"
52 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" 52 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h"
53 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 53 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
54 #include "ios/chrome/browser/chrome_url_constants.h" 54 #include "ios/chrome/browser/chrome_url_constants.h"
55 #include "ios/chrome/browser/chrome_url_util.h" 55 #include "ios/chrome/browser/chrome_url_util.h"
(...skipping 5071 matching lines...) Expand 10 before | Expand all | Expand 10 after
5127 5127
5128 - (UIView*)voiceSearchButton { 5128 - (UIView*)voiceSearchButton {
5129 return _voiceSearchButton; 5129 return _voiceSearchButton;
5130 } 5130 }
5131 5131
5132 - (id<LogoAnimationControllerOwner>)logoAnimationControllerOwner { 5132 - (id<LogoAnimationControllerOwner>)logoAnimationControllerOwner {
5133 return [self currentLogoAnimationControllerOwner]; 5133 return [self currentLogoAnimationControllerOwner];
5134 } 5134 }
5135 5135
5136 @end 5136 @end
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/activity_services/BUILD.gn ('k') | ios/chrome/browser/ui/ntp/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698