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

Side by Side Diff: chrome/test/automation/proxy_launcher.h

Issue 189603007: Let DCHECK in non-official-release build be opt-in with dcheck_always_on=1 only (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For landing Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/logging_chrome.cc ('k') | chrome/test/automation/proxy_launcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/common/logging_chrome.cc ('k') | chrome/test/automation/proxy_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698