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

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

Issue 2437003003: 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
49 SigninResourcesProvider* ChromeBrowserProvider::GetSigninResourcesProvider() { 53 SigninResourcesProvider* ChromeBrowserProvider::GetSigninResourcesProvider() {
50 return nullptr; 54 return nullptr;
51 } 55 }
52 56
53 void ChromeBrowserProvider::SetChromeIdentityServiceForTesting( 57 void ChromeBrowserProvider::SetChromeIdentityServiceForTesting(
54 std::unique_ptr<ChromeIdentityService> service) {} 58 std::unique_ptr<ChromeIdentityService> service) {}
55 59
56 ChromeIdentityService* ChromeBrowserProvider::GetChromeIdentityService() { 60 ChromeIdentityService* ChromeBrowserProvider::GetChromeIdentityService() {
57 return nullptr; 61 return nullptr;
58 } 62 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 128
125 NSArray* ChromeBrowserProvider::GetAvailableVoiceSearchLanguages() const { 129 NSArray* ChromeBrowserProvider::GetAvailableVoiceSearchLanguages() const {
126 return [NSArray array]; 130 return [NSArray array];
127 } 131 }
128 132
129 VoiceSearchProvider* ChromeBrowserProvider::GetVoiceSearchProvider() const { 133 VoiceSearchProvider* ChromeBrowserProvider::GetVoiceSearchProvider() const {
130 return nullptr; 134 return nullptr;
131 } 135 }
132 136
133 } // namespace ios 137 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698