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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 ios::ChromeBrowserState* browser_state, | 97 ios::ChromeBrowserState* browser_state, |
98 const GURL& page_url, | 98 const GURL& page_url, |
99 const std::vector<int>& desired_sizes_in_pixel, | 99 const std::vector<int>& desired_sizes_in_pixel, |
100 const favicon_base::FaviconResultsCallback& callback) const {} | 100 const favicon_base::FaviconResultsCallback& callback) const {} |
101 | 101 |
102 bool ChromeBrowserProvider::IsSafeBrowsingEnabled( | 102 bool ChromeBrowserProvider::IsSafeBrowsingEnabled( |
103 const base::Closure& on_update_callback) { | 103 const base::Closure& on_update_callback) { |
104 return false; | 104 return false; |
105 } | 105 } |
106 | 106 |
107 scoped_ptr<browser_sync::SyncedWindowDelegatesGetter> | 107 std::unique_ptr<browser_sync::SyncedWindowDelegatesGetter> |
108 ChromeBrowserProvider::CreateSyncedWindowDelegatesGetter( | 108 ChromeBrowserProvider::CreateSyncedWindowDelegatesGetter( |
109 ios::ChromeBrowserState* browser_state) { | 109 ios::ChromeBrowserState* browser_state) { |
110 return nullptr; | 110 return nullptr; |
111 } | 111 } |
112 | 112 |
113 } // namespace ios | 113 } // namespace ios |
OLD | NEW |