| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_TEST_AUTOMATION_PROXY_LAUNCHER_H_ | 5 #ifndef CHROME_TEST_AUTOMATION_PROXY_LAUNCHER_H_ |
| 6 #define CHROME_TEST_AUTOMATION_PROXY_LAUNCHER_H_ | 6 #define CHROME_TEST_AUTOMATION_PROXY_LAUNCHER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 179 |
| 180 // If true, runs the renderer outside the sandbox. | 180 // If true, runs the renderer outside the sandbox. |
| 181 bool no_sandbox_; | 181 bool no_sandbox_; |
| 182 | 182 |
| 183 // If true, write full memory dump during crash. | 183 // If true, write full memory dump during crash. |
| 184 bool full_memory_dump_; | 184 bool full_memory_dump_; |
| 185 | 185 |
| 186 // If true, a user is paying attention to the test, so show error dialogs. | 186 // If true, a user is paying attention to the test, so show error dialogs. |
| 187 bool show_error_dialogs_; | 187 bool show_error_dialogs_; |
| 188 | 188 |
| 189 // Enable dchecks in release mode. | |
| 190 bool enable_dcheck_; | |
| 191 | |
| 192 // Dump process memory on dcheck without crashing. | 189 // Dump process memory on dcheck without crashing. |
| 193 bool silent_dump_on_dcheck_; | 190 bool silent_dump_on_dcheck_; |
| 194 | 191 |
| 195 // Disable breakpad on the browser. | 192 // Disable breakpad on the browser. |
| 196 bool disable_breakpad_; | 193 bool disable_breakpad_; |
| 197 | 194 |
| 198 // Flags passed to the JS engine. | 195 // Flags passed to the JS engine. |
| 199 std::string js_flags_; | 196 std::string js_flags_; |
| 200 | 197 |
| 201 // Logging level. | 198 // Logging level. |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 | 243 |
| 247 protected: | 244 protected: |
| 248 std::string channel_id_; // Channel id of automation proxy. | 245 std::string channel_id_; // Channel id of automation proxy. |
| 249 bool disconnect_on_failure_; // True if we disconnect on IPC channel failure. | 246 bool disconnect_on_failure_; // True if we disconnect on IPC channel failure. |
| 250 | 247 |
| 251 private: | 248 private: |
| 252 DISALLOW_COPY_AND_ASSIGN(AnonymousProxyLauncher); | 249 DISALLOW_COPY_AND_ASSIGN(AnonymousProxyLauncher); |
| 253 }; | 250 }; |
| 254 | 251 |
| 255 #endif // CHROME_TEST_AUTOMATION_PROXY_LAUNCHER_H_ | 252 #endif // CHROME_TEST_AUTOMATION_PROXY_LAUNCHER_H_ |
| OLD | NEW |