| Index: chrome/test/ui/ui_test.cc
|
| ===================================================================
|
| --- chrome/test/ui/ui_test.cc (revision 12816)
|
| +++ chrome/test/ui/ui_test.cc (working copy)
|
| @@ -363,7 +363,8 @@
|
| CommandLine wrapped_command(ASCIIToWide(browser_wrapper));
|
| wrapped_command.AppendArguments(command_line, true);
|
| command_line = wrapped_command;
|
| - LOG(INFO) << "BROWSER_WRAPPER was set, prefixing command_line with " << browser_wrapper;
|
| + LOG(INFO) << "BROWSER_WRAPPER was set, prefixing command_line with "
|
| + << browser_wrapper;
|
| }
|
|
|
| bool started = base::LaunchApp(command_line.argv(),
|
| @@ -812,6 +813,16 @@
|
| "", "", units, important);
|
| }
|
|
|
| +void UITest::PrintResult(const std::string& measurement,
|
| + const std::string& modifier,
|
| + const std::string& trace,
|
| + const std::string& value,
|
| + const std::string& units,
|
| + bool important) {
|
| + PrintResultsImpl(measurement, modifier, trace, value, "", "", units,
|
| + important);
|
| +}
|
| +
|
| void UITest::PrintResultMeanAndError(const std::string& measurement,
|
| const std::string& modifier,
|
| const std::string& trace,
|
|
|