Index: chrome/browser/browser_shutdown.cc |
diff --git a/chrome/browser/browser_shutdown.cc b/chrome/browser/browser_shutdown.cc |
index 9646ad86be5f705a8df28b8573f60ca1daea92ae..99f3c6929111c264a525a8b1c8b03344ae3f309f 100644 |
--- a/chrome/browser/browser_shutdown.cc |
+++ b/chrome/browser/browser_shutdown.cc |
@@ -181,7 +181,7 @@ void Shutdown() { |
switches.begin(); i != switches.end(); ++i) { |
CommandLine::StringType switch_value = i->second; |
if (!switch_value.empty()) |
- new_cl->AppendSwitchWithValue(i->first, i->second); |
+ new_cl->AppendSwitchNative(i->first, i->second); |
else |
new_cl->AppendSwitch(i->first); |
} |