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

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

Issue 12315071: Revert 184352 (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
===================================================================
--- chrome/browser/diagnostics/diagnostics_main.cc (revision 184354)
+++ chrome/browser/diagnostics/diagnostics_main.cc (working copy)
@@ -216,7 +216,7 @@
}
bool WriteInfoText(const std::string& txt) {
- return WriteInfoText(base::UTF8ToWide(txt));
+ return WriteInfoText(UTF8ToWide(txt));
}
// Write a result block. It consist of two lines. The first line
@@ -318,8 +318,8 @@
private:
void ShowResult(DiagnosticsModel::TestInfo* test_info) {
bool success = (DiagnosticsModel::TEST_OK == test_info->GetResult());
- writer_->WriteResult(success, base::UTF16ToWide(test_info->GetTitle()),
- base::UTF16ToWide(test_info->GetAdditionalInfo()));
+ writer_->WriteResult(success, UTF16ToWide(test_info->GetTitle()),
+ 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