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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 } | 55 } |
56 | 56 |
57 std::string ChromeBrowserProvider::DataReductionProxyAvailability() { | 57 std::string ChromeBrowserProvider::DataReductionProxyAvailability() { |
58 return "default"; | 58 return "default"; |
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 autofill::CardUnmaskPromptView* | |
66 ChromeBrowserProvider::CreateCardUnmaskPromptView( | |
67 autofill::CardUnmaskPromptController* controller) { | |
68 return nullptr; | |
69 } | |
70 | |
71 std::string ChromeBrowserProvider::GetRiskData() { | 65 std::string ChromeBrowserProvider::GetRiskData() { |
72 return std::string(); | 66 return std::string(); |
73 } | 67 } |
74 | 68 |
75 bool ChromeBrowserProvider::IsOffTheRecordSessionActive() { | 69 bool ChromeBrowserProvider::IsOffTheRecordSessionActive() { |
76 return false; | 70 return false; |
77 } | 71 } |
78 | 72 |
79 void ChromeBrowserProvider::GetFaviconForURL( | 73 void ChromeBrowserProvider::GetFaviconForURL( |
80 ios::ChromeBrowserState* browser_state, | 74 ios::ChromeBrowserState* browser_state, |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 id<NativeAppWhitelistManager> | 135 id<NativeAppWhitelistManager> |
142 ChromeBrowserProvider::GetNativeAppWhitelistManager() const { | 136 ChromeBrowserProvider::GetNativeAppWhitelistManager() const { |
143 return nil; | 137 return nil; |
144 } | 138 } |
145 | 139 |
146 void ChromeBrowserProvider::HideModalViewStack() const {} | 140 void ChromeBrowserProvider::HideModalViewStack() const {} |
147 | 141 |
148 void ChromeBrowserProvider::LogIfModalViewsArePresented() const {} | 142 void ChromeBrowserProvider::LogIfModalViewsArePresented() const {} |
149 | 143 |
150 } // namespace ios | 144 } // namespace ios |
OLD | NEW |