Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / ios / public / provider / chrome / browser / string_provider.h
blob573b8ec0866522e2728c3c5deaedaf47acaa0993
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_PROVIDER_CHROME_BROWSER_STRING_PROVIDER_H_
6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_STRING_PROVIDER_H_
8 #include "base/strings/string16.h"
10 namespace ios {
12 // A class that provides access to localized strings.
13 class StringProvider {
14 public:
15 StringProvider() {}
16 virtual ~StringProvider() {}
18 // Strings used in //ios/chrome.
19 // TODO(droger): Find a long term solution for strings used in //ios/chrome.
21 // Returns a generic "Done" string.
22 virtual base::string16 GetDoneString() = 0;
23 // Returns the product name (e.g. "Google Chrome").
24 virtual base::string16 GetProductName() = 0;
27 } // namespace ios
29 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_STRING_PROVIDER_H_