Hi,
I am trying to do some experiment on perf settings.
Had a question, can I apply some command line parameters after profile has been initialized?
I added some code in chrome_browser_main.cc, but it looks those changes do not affect anything:
// Post-profile init ---------------------------------------------------------
// Add a new switch:
CommandLine* command_line_current = CommandLine::ForCurrentProcess();
command_line_current->AppendSwitch(
switches::kNoProxyServer);
// Update local_state:
local_state_->UpdateCommandLinePrefStore(
new CommandLinePrefStore(command_line_current));
Just curious to know is it possible to change the system settings through command line parameters interfaces after system started up. Thank you!