summaryrefslogtreecommitdiffstats
path: root/ash/shell_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'ash/shell_delegate.h')
-rw-r--r--ash/shell_delegate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h
index 97c0952..e57eebd 100644
--- a/ash/shell_delegate.h
+++ b/ash/shell_delegate.h
@@ -236,10 +236,10 @@ class ASH_EXPORT ShellDelegate {
// Produces l10n-ed text of remaining time, e.g.: "13 minutes left" or
// "13 Minuten übrig".
// Used, for example, to display the remaining battery life.
- virtual string16 GetTimeRemainingString(base::TimeDelta delta) = 0;
+ virtual base::string16 GetTimeRemainingString(base::TimeDelta delta) = 0;
// Produces l10n-ed text for time duration, e.g.: "13 minutes" or "2 hours".
- virtual string16 GetTimeDurationLongString(base::TimeDelta delta) = 0;
+ virtual base::string16 GetTimeDurationLongString(base::TimeDelta delta) = 0;
// Saves the zoom scale of the full screen magnifier.
virtual void SaveScreenMagnifierScale(double scale) = 0;
@@ -256,7 +256,7 @@ class ASH_EXPORT ShellDelegate {
virtual RootWindowHostFactory* CreateRootWindowHostFactory() = 0;
// Get the product name.
- virtual string16 GetProductName() const = 0;
+ virtual base::string16 GetProductName() const = 0;
};
} // namespace ash