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"
12 // A class that provides access to localized strings.
13 class 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;
29 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_STRING_PROVIDER_H_