OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/at_exit.h" | 5 #include "base/at_exit.h" |
6 #include "base/basictypes.h" | 6 #include "base/basictypes.h" |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/event_recorder.h" | 8 #include "base/event_recorder.h" |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 parsed_command_line.HasSwitch(test_shell::kNoErrorDialogs) || | 77 parsed_command_line.HasSwitch(test_shell::kNoErrorDialogs) || |
78 parsed_command_line.HasSwitch(test_shell::kLayoutTests)); | 78 parsed_command_line.HasSwitch(test_shell::kLayoutTests)); |
79 bool layout_test_mode = | 79 bool layout_test_mode = |
80 parsed_command_line.HasSwitch(test_shell::kLayoutTests); | 80 parsed_command_line.HasSwitch(test_shell::kLayoutTests); |
81 bool ux_theme = parsed_command_line.HasSwitch(test_shell::kUxTheme); | 81 bool ux_theme = parsed_command_line.HasSwitch(test_shell::kUxTheme); |
82 bool classic_theme = | 82 bool classic_theme = |
83 parsed_command_line.HasSwitch(test_shell::kClassicTheme); | 83 parsed_command_line.HasSwitch(test_shell::kClassicTheme); |
84 #if defined(OS_WIN) | 84 #if defined(OS_WIN) |
85 bool generic_theme = (layout_test_mode && !ux_theme && !classic_theme) || | 85 bool generic_theme = (layout_test_mode && !ux_theme && !classic_theme) || |
86 parsed_command_line.HasSwitch(test_shell::kGenericTheme); | 86 parsed_command_line.HasSwitch(test_shell::kGenericTheme); |
| 87 #else |
| 88 // Stop compiler warnings about unused variables. |
| 89 ux_theme = ux_theme; |
87 #endif | 90 #endif |
88 | 91 |
89 bool enable_gp_fault_error_box = false; | 92 bool enable_gp_fault_error_box = false; |
90 enable_gp_fault_error_box = | 93 enable_gp_fault_error_box = |
91 parsed_command_line.HasSwitch(test_shell::kGPFaultErrorBox); | 94 parsed_command_line.HasSwitch(test_shell::kGPFaultErrorBox); |
92 TestShell::InitLogging(suppress_error_dialogs, | 95 TestShell::InitLogging(suppress_error_dialogs, |
93 layout_test_mode, | 96 layout_test_mode, |
94 enable_gp_fault_error_box); | 97 enable_gp_fault_error_box); |
95 | 98 |
96 // Initialize WebKit for this scope. | 99 // Initialize WebKit for this scope. |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 | 355 |
353 TestShell::ShutdownTestShell(); | 356 TestShell::ShutdownTestShell(); |
354 TestShell::CleanupLogging(); | 357 TestShell::CleanupLogging(); |
355 | 358 |
356 // Tear down shared StatsTable; prevents unit_tests from leaking it. | 359 // Tear down shared StatsTable; prevents unit_tests from leaking it. |
357 StatsTable::set_current(NULL); | 360 StatsTable::set_current(NULL); |
358 delete table; | 361 delete table; |
359 | 362 |
360 return 0; | 363 return 0; |
361 } | 364 } |
OLD | NEW |