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

Unified Diff: chrome/browser/diagnostics/diagnostics_main.cc

Issue 12314090: Add utf_string_conversions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months 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/crash_upload_list_win.cc ('k') | chrome/browser/download/download_extensions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/diagnostics/diagnostics_main.cc
diff --git a/chrome/browser/diagnostics/diagnostics_main.cc b/chrome/browser/diagnostics/diagnostics_main.cc
index cb44bc0454d33ffa86088337242d05576341dd66..02ef604b95ceafa7d2750727b189dbf55539ecb9 100644
--- a/chrome/browser/diagnostics/diagnostics_main.cc
+++ b/chrome/browser/diagnostics/diagnostics_main.cc
@@ -216,7 +216,7 @@ class TestWriter {
}
bool WriteInfoText(const std::string& txt) {
- return WriteInfoText(UTF8ToWide(txt));
+ return WriteInfoText(base::UTF8ToWide(txt));
}
// Write a result block. It consist of two lines. The first line
@@ -318,8 +318,8 @@ class TestController : public DiagnosticsModel::Observer {
private:
void ShowResult(DiagnosticsModel::TestInfo* test_info) {
bool success = (DiagnosticsModel::TEST_OK == test_info->GetResult());
- writer_->WriteResult(success, UTF16ToWide(test_info->GetTitle()),
- UTF16ToWide(test_info->GetAdditionalInfo()));
+ writer_->WriteResult(success, base::UTF16ToWide(test_info->GetTitle()),
+ base::UTF16ToWide(test_info->GetAdditionalInfo()));
}
DiagnosticsModel* model_;
« no previous file with comments | « chrome/browser/crash_upload_list_win.cc ('k') | chrome/browser/download/download_extensions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698