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

Unified Diff: chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698