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

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

Issue 2435053003: Revert of Access SigninErrorProvider through ChromeBrowserProvider. (Closed)
Patch Set: Created 4 years, 2 months 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 28 matching lines...) Expand all
39 ChromeBrowserProvider::GetUpdatableResourceProvider() { 39 ChromeBrowserProvider::GetUpdatableResourceProvider() {
40 return nullptr; 40 return nullptr;
41 } 41 }
42 42
43 InfoBarViewPlaceholder ChromeBrowserProvider::CreateInfoBarView( 43 InfoBarViewPlaceholder ChromeBrowserProvider::CreateInfoBarView(
44 CGRect frame, 44 CGRect frame,
45 InfoBarViewDelegate* delegate) { 45 InfoBarViewDelegate* delegate) {
46 return nullptr; 46 return nullptr;
47 } 47 }
48 48
49 SigninErrorProvider* ChromeBrowserProvider::GetSigninErrorProvider() {
50 return nullptr;
51 }
52
53 SigninResourcesProvider* ChromeBrowserProvider::GetSigninResourcesProvider() { 49 SigninResourcesProvider* ChromeBrowserProvider::GetSigninResourcesProvider() {
54 return nullptr; 50 return nullptr;
55 } 51 }
56 52
57 void ChromeBrowserProvider::SetChromeIdentityServiceForTesting( 53 void ChromeBrowserProvider::SetChromeIdentityServiceForTesting(
58 std::unique_ptr<ChromeIdentityService> service) {} 54 std::unique_ptr<ChromeIdentityService> service) {}
59 55
60 ChromeIdentityService* ChromeBrowserProvider::GetChromeIdentityService() { 56 ChromeIdentityService* ChromeBrowserProvider::GetChromeIdentityService() {
61 return nullptr; 57 return nullptr;
62 } 58 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 124
129 NSArray* ChromeBrowserProvider::GetAvailableVoiceSearchLanguages() const { 125 NSArray* ChromeBrowserProvider::GetAvailableVoiceSearchLanguages() const {
130 return [NSArray array]; 126 return [NSArray array];
131 } 127 }
132 128
133 VoiceSearchProvider* ChromeBrowserProvider::GetVoiceSearchProvider() const { 129 VoiceSearchProvider* ChromeBrowserProvider::GetVoiceSearchProvider() const {
134 return nullptr; 130 return nullptr;
135 } 131 }
136 132
137 } // namespace ios 133 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698