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/tabs/tab.h" | 5 #import "ios/chrome/browser/tabs/tab.h" |
6 | 6 |
7 #import <CoreLocation/CoreLocation.h> | 7 #import <CoreLocation/CoreLocation.h> |
8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
9 | 9 |
10 #include <utility> | 10 #include <utility> |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "components/history/core/browser/history_context.h" | 33 #include "components/history/core/browser/history_context.h" |
34 #include "components/history/core/browser/history_service.h" | 34 #include "components/history/core/browser/history_service.h" |
35 #include "components/history/core/browser/top_sites.h" | 35 #include "components/history/core/browser/top_sites.h" |
36 #include "components/history/ios/browser/web_state_top_sites_observer.h" | 36 #include "components/history/ios/browser/web_state_top_sites_observer.h" |
37 #include "components/infobars/core/infobar_manager.h" | 37 #include "components/infobars/core/infobar_manager.h" |
38 #include "components/keyed_service/core/service_access_type.h" | 38 #include "components/keyed_service/core/service_access_type.h" |
39 #include "components/metrics_services_manager/metrics_services_manager.h" | 39 #include "components/metrics_services_manager/metrics_services_manager.h" |
40 #include "components/navigation_metrics/navigation_metrics.h" | 40 #include "components/navigation_metrics/navigation_metrics.h" |
41 #include "components/navigation_metrics/origins_seen_service.h" | 41 #include "components/navigation_metrics/origins_seen_service.h" |
42 #include "components/prefs/pref_service.h" | 42 #include "components/prefs/pref_service.h" |
| 43 #include "components/reading_list/core/reading_list_model.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/search_engines/template_url_service.h" | 45 #include "components/search_engines/template_url_service.h" |
46 #include "components/sessions/core/session_types.h" | 46 #include "components/sessions/core/session_types.h" |
47 #include "components/sessions/ios/ios_serialized_navigation_builder.h" | 47 #include "components/sessions/ios/ios_serialized_navigation_builder.h" |
48 #include "components/signin/core/browser/account_reconcilor.h" | 48 #include "components/signin/core/browser/account_reconcilor.h" |
49 #include "components/signin/core/browser/signin_metrics.h" | 49 #include "components/signin/core/browser/signin_metrics.h" |
50 #import "components/signin/ios/browser/account_consistency_service.h" | 50 #import "components/signin/ios/browser/account_consistency_service.h" |
51 #include "components/strings/grit/components_strings.h" | 51 #include "components/strings/grit/components_strings.h" |
52 #include "components/url_formatter/url_formatter.h" | 52 #include "components/url_formatter/url_formatter.h" |
53 #include "ios/chrome/browser/application_context.h" | 53 #include "ios/chrome/browser/application_context.h" |
54 #import "ios/chrome/browser/autofill/autofill_controller.h" | 54 #import "ios/chrome/browser/autofill/autofill_controller.h" |
(...skipping 2042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2097 | 2097 |
2098 - (TabModel*)parentTabModel { | 2098 - (TabModel*)parentTabModel { |
2099 return parentTabModel_; | 2099 return parentTabModel_; |
2100 } | 2100 } |
2101 | 2101 |
2102 - (FormInputAccessoryViewController*)inputAccessoryViewController { | 2102 - (FormInputAccessoryViewController*)inputAccessoryViewController { |
2103 return inputAccessoryViewController_.get(); | 2103 return inputAccessoryViewController_.get(); |
2104 } | 2104 } |
2105 | 2105 |
2106 @end | 2106 @end |
OLD | NEW |