Index: chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc |
diff --git a/chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc b/chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc |
index 8a5633f138a3b36e16cb04a0e925f86afefb934b..7548d10bac95659a00df43d9cd04f098a4282678 100644 |
--- a/chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc |
+++ b/chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc |
@@ -29,7 +29,7 @@ class RecordedDesktopNotifications : public DesktopNotifications { |
virtual void ShowNotificationWithMessage( |
NotificationType type, |
const std::string& path, |
- const string16& message) OVERRIDE { |
+ const base::string16& message) OVERRIDE { |
ShowAndHideParams params; |
params.event = SHOW; |
params.type = type; |
@@ -58,7 +58,7 @@ class RecordedDesktopNotifications : public DesktopNotifications { |
Event event; |
NotificationType type; |
std::string path; |
- string16 message; // Empty for HideNotification(). |
+ base::string16 message; // Empty for HideNotification(). |
}; |
// Returns parameters passed to ShowNotificationWithMessage() and |