| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 return nullptr; | 42 return nullptr; |
| 43 } | 43 } |
| 44 | 44 |
| 45 void ChromeBrowserProvider::SetChromeIdentityServiceForTesting( | 45 void ChromeBrowserProvider::SetChromeIdentityServiceForTesting( |
| 46 std::unique_ptr<ChromeIdentityService> service) {} | 46 std::unique_ptr<ChromeIdentityService> service) {} |
| 47 | 47 |
| 48 ChromeIdentityService* ChromeBrowserProvider::GetChromeIdentityService() { | 48 ChromeIdentityService* ChromeBrowserProvider::GetChromeIdentityService() { |
| 49 return nullptr; | 49 return nullptr; |
| 50 } | 50 } |
| 51 | 51 |
| 52 LiveTabContextProvider* ChromeBrowserProvider::GetLiveTabContextProvider() { | |
| 53 return nullptr; | |
| 54 } | |
| 55 | |
| 56 GeolocationUpdaterProvider* | 52 GeolocationUpdaterProvider* |
| 57 ChromeBrowserProvider::GetGeolocationUpdaterProvider() { | 53 ChromeBrowserProvider::GetGeolocationUpdaterProvider() { |
| 58 return nullptr; | 54 return nullptr; |
| 59 } | 55 } |
| 60 | 56 |
| 61 std::string ChromeBrowserProvider::DataReductionProxyAvailability() { | 57 std::string ChromeBrowserProvider::DataReductionProxyAvailability() { |
| 62 return "default"; | 58 return "default"; |
| 63 } | 59 } |
| 64 | 60 |
| 65 std::string ChromeBrowserProvider::GetDistributionBrandCode() { | 61 std::string ChromeBrowserProvider::GetDistributionBrandCode() { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 id<NativeAppWhitelistManager> | 144 id<NativeAppWhitelistManager> |
| 149 ChromeBrowserProvider::GetNativeAppWhitelistManager() const { | 145 ChromeBrowserProvider::GetNativeAppWhitelistManager() const { |
| 150 return nil; | 146 return nil; |
| 151 } | 147 } |
| 152 | 148 |
| 153 void ChromeBrowserProvider::HideModalViewStack() const {} | 149 void ChromeBrowserProvider::HideModalViewStack() const {} |
| 154 | 150 |
| 155 void ChromeBrowserProvider::LogIfModalViewsArePresented() const {} | 151 void ChromeBrowserProvider::LogIfModalViewsArePresented() const {} |
| 156 | 152 |
| 157 } // namespace ios | 153 } // namespace ios |
| OLD | NEW |