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 "base/logging.h" | 7 #include "base/logging.h" |
8 #include "ios/public/provider/chrome/browser/keyed_service_provider.h" | 8 #include "ios/public/provider/chrome/browser/keyed_service_provider.h" |
9 | 9 |
10 namespace ios { | 10 namespace ios { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 bool ChromeBrowserProvider::IsOffTheRecordSessionActive() { | 120 bool ChromeBrowserProvider::IsOffTheRecordSessionActive() { |
121 return false; | 121 return false; |
122 } | 122 } |
123 | 123 |
124 void ChromeBrowserProvider::GetFaviconForURL( | 124 void ChromeBrowserProvider::GetFaviconForURL( |
125 ios::ChromeBrowserState* browser_state, | 125 ios::ChromeBrowserState* browser_state, |
126 const GURL& page_url, | 126 const GURL& page_url, |
127 const std::vector<int>& desired_sizes_in_pixel, | 127 const std::vector<int>& desired_sizes_in_pixel, |
128 const favicon_base::FaviconResultsCallback& callback) const {} | 128 const favicon_base::FaviconResultsCallback& callback) const {} |
129 | 129 |
| 130 |
| 131 bool ChromeBrowserProvider::IsSafeBrowsingEnabled( |
| 132 const base::Closure& on_update_callback) { |
| 133 return false; |
| 134 } |
| 135 |
| 136 void ChromeBrowserProvider::OnMetricsServicesManagerClientDestroyed() {} |
| 137 |
130 } // namespace ios | 138 } // namespace ios |
OLD | NEW |