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

Unified Diff: chrome/browser/download/download_status_updater_win.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/download/download_status_updater_win.cc
diff --git a/chrome/browser/download/download_status_updater_win.cc b/chrome/browser/download/download_status_updater_win.cc
index 542f97c77cb846385bd40bf74fb595caf675ad45..f8587ed5ec4ac9d950e8c9dd872cfea66c57049e 100644
--- a/chrome/browser/download/download_status_updater_win.cc
+++ b/chrome/browser/download/download_status_updater_win.cc
@@ -126,9 +126,9 @@ void DownloadStatusUpdater::UpdateAppIconDownloadProgress(
::GetProcAddress(metro, "DisplayNotification"));
DCHECK(display_notification);
if (display_notification) {
- string16 title = l10n_util::GetStringUTF16(
+ base::string16 title = l10n_util::GetStringUTF16(
IDS_METRO_DOWNLOAD_COMPLETE_NOTIFICATION_TITLE);
- string16 body = l10n_util::GetStringUTF16(
+ base::string16 body = l10n_util::GetStringUTF16(
IDS_METRO_DOWNLOAD_COMPLETE_NOTIFICATION);
// Dummy notification id. Every metro style notification needs a
« no previous file with comments | « chrome/browser/download/download_shelf_context_menu.cc ('k') | chrome/browser/download/download_target_determiner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698