summaryrefslogtreecommitdiffstats
path: root/chrome/test/reliability
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-16 21:45:17 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-16 21:45:17 +0000
commit9f308ae7b39912090955910e76753aa0823461e3 (patch)
tree1600f6c38f3113c692e372e34701eb39b3e518c9 /chrome/test/reliability
parenta91d639d609db7e4c9ae2ccad3fe1039608c45ff (diff)
downloadchromium_src-9f308ae7b39912090955910e76753aa0823461e3.zip
chromium_src-9f308ae7b39912090955910e76753aa0823461e3.tar.gz
chromium_src-9f308ae7b39912090955910e76753aa0823461e3.tar.bz2
Use GetSwitchValuePath.
BUG=24672 TEST=unit_tests Patch by Thiago Farina <thiago.farina@gmail.com>. Review URL: http://codereview.chromium.org/375016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32093 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/reliability')
-rw-r--r--chrome/test/reliability/page_load_test.cc19
1 files changed, 6 insertions, 13 deletions
diff --git a/chrome/test/reliability/page_load_test.cc b/chrome/test/reliability/page_load_test.cc
index ef7f66d..a4d0e5f 100644
--- a/chrome/test/reliability/page_load_test.cc
+++ b/chrome/test/reliability/page_load_test.cc
@@ -667,10 +667,8 @@ void SetPageRange(const CommandLine& parsed_command_line) {
ASSERT_TRUE(g_end_index >= g_start_index);
- if (parsed_command_line.HasSwitch(kListSwitch)) {
- g_url_file_path = FilePath::FromWStringHack(
- parsed_command_line.GetSwitchValue(kListSwitch));
- }
+ if (parsed_command_line.HasSwitch(kListSwitch))
+ g_url_file_path = parsed_command_line.GetSwitchValuePath(kListSwitch);
if (parsed_command_line.HasSwitch(kIterationSwitch)) {
ASSERT_TRUE(
@@ -690,11 +688,8 @@ void SetPageRange(const CommandLine& parsed_command_line) {
parsed_command_line.GetSwitchValue(kEndURLSwitch));
}
- if (parsed_command_line.HasSwitch(kLogFileSwitch)) {
- g_log_file_path =
- FilePath::FromWStringHack(
- parsed_command_line.GetSwitchValue(kLogFileSwitch));
- }
+ if (parsed_command_line.HasSwitch(kLogFileSwitch))
+ g_log_file_path = parsed_command_line.GetSwitchValuePath(kLogFileSwitch);
if (parsed_command_line.HasSwitch(kTimeoutSwitch)) {
ASSERT_TRUE(
@@ -721,11 +716,9 @@ void SetPageRange(const CommandLine& parsed_command_line) {
CommandLine v8_command_line(
parsed_command_line.GetSwitchValuePath(switches::kJavaScriptFlags));
if (v8_command_line.HasSwitch(kV8LogFileSwitch)) {
- g_v8_log_path = FilePath::FromWStringHack(
- v8_command_line.GetSwitchValue(kV8LogFileSwitch));
- if (!file_util::AbsolutePath(&g_v8_log_path)) {
+ g_v8_log_path = v8_command_line.GetSwitchValuePath(kV8LogFileSwitch);
+ if (!file_util::AbsolutePath(&g_v8_log_path))
g_v8_log_path = FilePath();
- }
}
}
}