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

Unified Diff: chrome/browser/download/download_danger_prompt.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
« no previous file with comments | « chrome/browser/download/download_browsertest.cc ('k') | chrome/browser/download/download_file_picker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_danger_prompt.cc
diff --git a/chrome/browser/download/download_danger_prompt.cc b/chrome/browser/download/download_danger_prompt.cc
index 0d5eb09276fddea885fda7f4b59c7bff23fb881e..d2e77e40cabd7c41bb067f82bc3c06bd5a1fc4a0 100644
--- a/chrome/browser/download/download_danger_prompt.cc
+++ b/chrome/browser/download/download_danger_prompt.cc
@@ -42,10 +42,10 @@ class DownloadDangerPromptImpl : public DownloadDangerPrompt,
virtual void OnDownloadUpdated(content::DownloadItem* download) OVERRIDE;
// TabModalConfirmDialogDelegate:
- virtual string16 GetTitle() OVERRIDE;
- virtual string16 GetMessage() OVERRIDE;
- virtual string16 GetAcceptButtonTitle() OVERRIDE;
- virtual string16 GetCancelButtonTitle() OVERRIDE;
+ virtual base::string16 GetTitle() OVERRIDE;
+ virtual base::string16 GetMessage() OVERRIDE;
+ virtual base::string16 GetAcceptButtonTitle() OVERRIDE;
+ virtual base::string16 GetCancelButtonTitle() OVERRIDE;
virtual void OnAccepted() OVERRIDE;
virtual void OnCanceled() OVERRIDE;
virtual void OnClosed() OVERRIDE;
@@ -169,7 +169,7 @@ string16 DownloadDangerPromptImpl::GetMessage() {
}
}
NOTREACHED();
- return string16();
+ return base::string16();
}
string16 DownloadDangerPromptImpl::GetAcceptButtonTitle() {
« no previous file with comments | « chrome/browser/download/download_browsertest.cc ('k') | chrome/browser/download/download_file_picker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698