| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index bf079f4659fac5a9fac44b7bd122f970d85566cc..260c28e23b0541928285fb393f15dd3911d183e2 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -1790,7 +1790,7 @@ void ChromeContentBrowserClient::AppendExtraCommandLineSwitches(
|
| for (base::ListValue::const_iterator it = switches->begin();
|
| it != switches->end(); ++it) {
|
| std::string switch_to_enable;
|
| - if ((*it)->GetAsString(&switch_to_enable))
|
| + if (it->GetAsString(&switch_to_enable))
|
| command_line->AppendSwitch(switch_to_enable);
|
| }
|
| }
|
|
|