| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 autofill::CardUnmaskPromptView* | 121 autofill::CardUnmaskPromptView* |
| 122 ChromeBrowserProvider::CreateCardUnmaskPromptView( | 122 ChromeBrowserProvider::CreateCardUnmaskPromptView( |
| 123 autofill::CardUnmaskPromptController* controller) { | 123 autofill::CardUnmaskPromptController* controller) { |
| 124 return nullptr; | 124 return nullptr; |
| 125 } | 125 } |
| 126 | 126 |
| 127 std::string ChromeBrowserProvider::GetRiskData() { | 127 std::string ChromeBrowserProvider::GetRiskData() { |
| 128 return std::string(); | 128 return std::string(); |
| 129 } | 129 } |
| 130 | 130 |
| 131 policy::BrowserPolicyConnector* | |
| 132 ChromeBrowserProvider::GetBrowserPolicyConnector() { | |
| 133 return nullptr; | |
| 134 } | |
| 135 | |
| 136 rappor::RapporService* ChromeBrowserProvider::GetRapporService() { | 131 rappor::RapporService* ChromeBrowserProvider::GetRapporService() { |
| 137 return nullptr; | 132 return nullptr; |
| 138 } | 133 } |
| 139 | 134 |
| 140 bool ChromeBrowserProvider::IsOffTheRecordSessionActive() { | 135 bool ChromeBrowserProvider::IsOffTheRecordSessionActive() { |
| 141 return false; | 136 return false; |
| 142 } | 137 } |
| 143 | 138 |
| 144 void ChromeBrowserProvider::GetFaviconForURL( | 139 void ChromeBrowserProvider::GetFaviconForURL( |
| 145 ios::ChromeBrowserState* browser_state, | 140 ios::ChromeBrowserState* browser_state, |
| 146 const GURL& page_url, | 141 const GURL& page_url, |
| 147 const std::vector<int>& desired_sizes_in_pixel, | 142 const std::vector<int>& desired_sizes_in_pixel, |
| 148 const favicon_base::FaviconResultsCallback& callback) const {} | 143 const favicon_base::FaviconResultsCallback& callback) const {} |
| 149 | 144 |
| 150 bool ChromeBrowserProvider::IsSafeBrowsingEnabled( | 145 bool ChromeBrowserProvider::IsSafeBrowsingEnabled( |
| 151 const base::Closure& on_update_callback) { | 146 const base::Closure& on_update_callback) { |
| 152 return false; | 147 return false; |
| 153 } | 148 } |
| 154 | 149 |
| 155 void ChromeBrowserProvider::OnMetricsServicesManagerClientDestroyed() {} | 150 void ChromeBrowserProvider::OnMetricsServicesManagerClientDestroyed() {} |
| 156 | 151 |
| 157 } // namespace ios | 152 } // namespace ios |
| OLD | NEW |