Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(671)

Side by Side Diff: ios/public/provider/chrome/browser/chrome_browser_provider.mm

Issue 2482173002: [ios] Adds OmahaServiceProvider. (Closed)
Patch Set: XML Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 const { 138 const {
139 return nullptr; 139 return nullptr;
140 } 140 }
141 141
142 id<LogoVendor> ChromeBrowserProvider::CreateLogoVendor( 142 id<LogoVendor> ChromeBrowserProvider::CreateLogoVendor(
143 ios::ChromeBrowserState* browser_state, 143 ios::ChromeBrowserState* browser_state,
144 id<UrlLoader> loader) const { 144 id<UrlLoader> loader) const {
145 return nil; 145 return nil;
146 } 146 }
147 147
148 OmahaServiceProvider* ChromeBrowserProvider::GetOmahaServiceProvider() const {
149 return nil;
150 }
151
148 bool ChromeBrowserProvider::ShouldEmbedderRegisterVoiceSearchPrefs() const { 152 bool ChromeBrowserProvider::ShouldEmbedderRegisterVoiceSearchPrefs() const {
149 return false; 153 return false;
150 } 154 }
151 155
152 } // namespace ios 156 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698