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

Unified Diff: base/command_line.h

Issue 2078913005: Add a chrome_elf_unittest ChromeElfLoadSanityTest which validates that loading chrome_elf does not … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert changes to base\launch Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/command_line.cc » ('j') | base/message_loop/message_pump_win.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line.h
diff --git a/base/command_line.h b/base/command_line.h
index 3de8873e26aa608352415065ac4885ae238044be..d72d8ccb0abc263fa99538b63f3afbcf606b9088 100644
--- a/base/command_line.h
+++ b/base/command_line.h
@@ -69,6 +69,14 @@ class BASE_EXPORT CommandLine {
// object and the behavior will be the same as Posix systems (only hyphens
// begin switches, everything else will be an arg).
static void set_slash_is_not_a_switch();
+
+ // Normally when the CommandLine singleton is initialized it gets the command
+ // line via the GetCommandLineW API and then uses the shell32 API
+ // CommandLineToArgvW to parse the command line and convert it back to argc
+ // and argv. We may want to honor the command line arguments passed in via
+ // main for console tests. The |honor_args_for_testing| parameter controls
+ // that behavior.
+ static void set_honor_argv_for_testing(bool honor_argv_for_testing);
#endif
// Initialize the current process CommandLine singleton. On Windows, ignores
« no previous file with comments | « no previous file | base/command_line.cc » ('j') | base/message_loop/message_pump_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698