| Index: chrome/test/chromedriver/chrome/network_conditions.cc
|
| diff --git a/chrome/test/chromedriver/chrome/network_conditions.cc b/chrome/test/chromedriver/chrome/network_conditions.cc
|
| index 86166eb21e82dd8677c39e7834bc35194b48571b..bc28c9e7943ec8708622da24d834fbda268d30fa 100644
|
| --- a/chrome/test/chromedriver/chrome/network_conditions.cc
|
| +++ b/chrome/test/chromedriver/chrome/network_conditions.cc
|
| @@ -39,7 +39,7 @@ Status FindPresetNetwork(std::string network_name,
|
| it != networks->end();
|
| ++it) {
|
| base::DictionaryValue* network = NULL;
|
| - if (!(*it)->GetAsDictionary(&network)) {
|
| + if (!it->GetAsDictionary(&network)) {
|
| return Status(kUnknownError,
|
| "malformed network in list: should be a dictionary");
|
| }
|
|
|