OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" | 5 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" |
6 | 6 |
7 #include <cstddef> | 7 #include <cstddef> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "components/metrics/metrics_provider.h" | 10 #include "components/metrics/metrics_provider.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 } | 59 } |
60 | 60 |
61 std::string ChromeBrowserProvider::GetDistributionBrandCode() { | 61 std::string ChromeBrowserProvider::GetDistributionBrandCode() { |
62 return std::string(); | 62 return std::string(); |
63 } | 63 } |
64 | 64 |
65 std::string ChromeBrowserProvider::GetRiskData() { | 65 std::string ChromeBrowserProvider::GetRiskData() { |
66 return std::string(); | 66 return std::string(); |
67 } | 67 } |
68 | 68 |
69 void ChromeBrowserProvider::GetFaviconForURL( | |
70 ios::ChromeBrowserState* browser_state, | |
71 const GURL& page_url, | |
72 const std::vector<int>& desired_sizes_in_pixel, | |
73 const favicon_base::FaviconResultsCallback& callback) const {} | |
74 | |
75 UITextField<TextFieldStyling>* ChromeBrowserProvider::CreateStyledTextField( | 69 UITextField<TextFieldStyling>* ChromeBrowserProvider::CreateStyledTextField( |
76 CGRect frame) const { | 70 CGRect frame) const { |
77 return nil; | 71 return nil; |
78 } | 72 } |
79 | 73 |
80 id<AppRatingPrompt> ChromeBrowserProvider::CreateAppRatingPrompt() const { | 74 id<AppRatingPrompt> ChromeBrowserProvider::CreateAppRatingPrompt() const { |
81 return nil; | 75 return nil; |
82 } | 76 } |
83 | 77 |
84 void ChromeBrowserProvider::InitializeCastService(id main_tab_model) const {} | 78 void ChromeBrowserProvider::InitializeCastService(id main_tab_model) const {} |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 id<NativeAppWhitelistManager> | 125 id<NativeAppWhitelistManager> |
132 ChromeBrowserProvider::GetNativeAppWhitelistManager() const { | 126 ChromeBrowserProvider::GetNativeAppWhitelistManager() const { |
133 return nil; | 127 return nil; |
134 } | 128 } |
135 | 129 |
136 void ChromeBrowserProvider::HideModalViewStack() const {} | 130 void ChromeBrowserProvider::HideModalViewStack() const {} |
137 | 131 |
138 void ChromeBrowserProvider::LogIfModalViewsArePresented() const {} | 132 void ChromeBrowserProvider::LogIfModalViewsArePresented() const {} |
139 | 133 |
140 } // namespace ios | 134 } // namespace ios |
OLD | NEW |