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

Unified Diff: chrome/test/reliability/automated_ui_tests.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/test/pyautolib/pyautolib.cc ('k') | chrome/test/reliability/page_load_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/reliability/automated_ui_tests.cc
===================================================================
--- chrome/test/reliability/automated_ui_tests.cc (revision 184354)
+++ chrome/test/reliability/automated_ui_tests.cc (working copy)
@@ -113,7 +113,7 @@
scoped_ptr<FileVersionInfo> file_info;
file_info.reset(
FileVersionInfo::CreateFileVersionInfo(base::FilePath(kChromeDll)));
- last_change = base::WideToASCII(file_info->last_change());
+ last_change = WideToASCII(file_info->last_change());
#elif defined(OS_POSIX)
chrome::VersionInfo version_info;
last_change = version_info.LastChange();
@@ -717,7 +717,7 @@
xml_writer_.AddAttribute("revision", GetChromeRevision());
xml_writer_.StartElement("crash");
#if defined(OS_WIN)
- xml_writer_.AddAttribute("crash_dump", base::WideToASCII(crash_dump.value()));
+ xml_writer_.AddAttribute("crash_dump", WideToASCII(crash_dump.value()));
#else
xml_writer_.AddAttribute("crash_dump", crash_dump.value());
#endif
« no previous file with comments | « chrome/test/pyautolib/pyautolib.cc ('k') | chrome/test/reliability/page_load_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698