| Index: ios/public/provider/chrome/browser/signin/test_signin_resources_provider.mm
|
| diff --git a/ios/public/provider/chrome/browser/signin/test_signin_resources_provider.mm b/ios/public/provider/chrome/browser/signin/test_signin_resources_provider.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5ee1f32075465330c207a91b139f63eeb7a2f001
|
| --- /dev/null
|
| +++ b/ios/public/provider/chrome/browser/signin/test_signin_resources_provider.mm
|
| @@ -0,0 +1,21 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "ios/public/provider/chrome/browser/signin/test_signin_resources_provider.h"
|
| +
|
| +#include <UIKit/UIKit.h>
|
| +
|
| +TestSigninResourcesProvider::TestSigninResourcesProvider()
|
| + : default_avatar_([[UIImage alloc] init]) {}
|
| +
|
| +TestSigninResourcesProvider::~TestSigninResourcesProvider() {}
|
| +
|
| +UIImage* TestSigninResourcesProvider::GetDefaultAvatar() {
|
| + return default_avatar_;
|
| +}
|
| +
|
| +NSString* TestSigninResourcesProvider::GetLocalizedString(
|
| + ios::SigninStringID string_id) {
|
| + return @"Test";
|
| +}
|
|
|