Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / ios / public / test / fake_string_provider.h
blob710f480980722f6fa6807e7bb17d0cd58bea5c98
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
3 // found in the LICENSE file.
5 #ifndef IOS_PUBLIC_TEST_FAKE_STRING_PROVIDER_H_
6 #define IOS_PUBLIC_TEST_FAKE_STRING_PROVIDER_H_
8 #include "base/compiler_specific.h"
9 #include "ios/public/provider/chrome/browser/string_provider.h"
11 namespace ios {
13 // An impementation of StringProvider for use in tests.
14 class FakeStringProvider : public StringProvider {
15 public:
16 FakeStringProvider();
17 ~FakeStringProvider() override;
19 // StringProvider implementation
20 base::string16 GetDoneString() override;
21 base::string16 GetOKString() override;
22 base::string16 GetProductName() override;
25 } // namespace ios
27 #endif // IOS_PUBLIC_TEST_FAKE_STRING_PROVIDER_H_