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

Side by Side Diff: ios/public/test/fake_string_provider.h

Issue 809333003: Upstream //ios/chrome/browser/translate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years, 11 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
(Empty)
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.
4
5 #ifndef IOS_PUBLIC_TEST_FAKE_STRING_PROVIDER_H_
6 #define IOS_PUBLIC_TEST_FAKE_STRING_PROVIDER_H_
7
8 #include "base/compiler_specific.h"
9 #include "ios/public/provider/chrome/browser/string_provider.h"
10
11 namespace ios {
12
13 // An impementation of StringProvider for use in tests.
14 class FakeStringProvider : public StringProvider {
15 public:
16 FakeStringProvider();
17 ~FakeStringProvider() override;
18
19 // StringProvider implementation
20 base::string16 GetDoneString() override;
21 base::string16 GetProductName() override;
22 };
23
24 } // namespace ios
25
26 #endif // IOS_PUBLIC_TEST_FAKE_STRING_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698