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

Unified Diff: base/command_line.cc

Issue 1469803006: NOT FOR REVIEW: Aura Android: Content Shell compiles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@auraclank_upstream_wthandroid
Patch Set: Temp Created 5 years 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 | « base/android/java/src/org/chromium/base/CommandLine.java ('k') | build/android/adb_run_aura_content_shell » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line.cc
diff --git a/base/command_line.cc b/base/command_line.cc
index c2ce33db5d20801c525603fab0b91a5b93717ba2..9ade782d81f7e0d96fedd08ffeed08bbae5b224f 100644
--- a/base/command_line.cc
+++ b/base/command_line.cc
@@ -72,10 +72,12 @@ bool IsSwitch(const CommandLine::StringType& string,
// Append switches and arguments, keeping switches before arguments.
void AppendSwitchesAndArguments(CommandLine* command_line,
const CommandLine::StringVector& argv) {
+ LOG(ERROR) << "auraclank: CommandLine::AppendArguments:";
bool parse_switches = true;
for (size_t i = 1; i < argv.size(); ++i) {
CommandLine::StringType arg = argv[i];
TrimWhitespace(arg, TRIM_ALL, &arg);
+ LOG(ERROR) << arg;
CommandLine::StringType switch_string;
CommandLine::StringType switch_value;
« no previous file with comments | « base/android/java/src/org/chromium/base/CommandLine.java ('k') | build/android/adb_run_aura_content_shell » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698