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

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

Issue 2521493003: [ios] Adds BrandedImageProvider and its associated image resources. (Closed)
Patch Set: Review Created 4 years 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 return nullptr; 132 return nullptr;
133 } 133 }
134 134
135 id<LogoVendor> ChromeBrowserProvider::CreateLogoVendor( 135 id<LogoVendor> ChromeBrowserProvider::CreateLogoVendor(
136 ios::ChromeBrowserState* browser_state, 136 ios::ChromeBrowserState* browser_state,
137 id<UrlLoader> loader) const { 137 id<UrlLoader> loader) const {
138 return nil; 138 return nil;
139 } 139 }
140 140
141 OmahaServiceProvider* ChromeBrowserProvider::GetOmahaServiceProvider() const { 141 OmahaServiceProvider* ChromeBrowserProvider::GetOmahaServiceProvider() const {
142 return nil; 142 return nullptr;
143 }
144
145 BrandedImageProvider* ChromeBrowserProvider::GetBrandedImageProvider() const {
146 return nullptr;
143 } 147 }
144 148
145 id<NativeAppWhitelistManager> 149 id<NativeAppWhitelistManager>
146 ChromeBrowserProvider::GetNativeAppWhitelistManager() const { 150 ChromeBrowserProvider::GetNativeAppWhitelistManager() const {
147 return nil; 151 return nil;
148 } 152 }
149 153
150 void ChromeBrowserProvider::HideModalViewStack() const {} 154 void ChromeBrowserProvider::HideModalViewStack() const {}
151 155
152 void ChromeBrowserProvider::LogIfModalViewsArePresented() const {} 156 void ChromeBrowserProvider::LogIfModalViewsArePresented() const {}
153 157
154 } // namespace ios 158 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698