| Index: content/browser/media/webrtc_browsertest.cc
|
| diff --git a/content/browser/media/webrtc_browsertest.cc b/content/browser/media/webrtc_browsertest.cc
|
| index 10504b3af968050db85578ff3ee6be8cffd0da47..5e3666c5f06f91de19265d9d12fc4ffd585379cd 100644
|
| --- a/content/browser/media/webrtc_browsertest.cc
|
| +++ b/content/browser/media/webrtc_browsertest.cc
|
| @@ -134,8 +134,9 @@ class WebrtcBrowserTest: public ContentBrowserTest {
|
| double timestamp_ns = 0.0;
|
| double previous_timestamp_ns = 0.0;
|
| std::string samples_interarrival_ns;
|
| - for (ListValue::iterator it = values->begin(); it != values->end(); ++it) {
|
| - const DictionaryValue* dict;
|
| + for (base::ListValue::iterator it = values->begin();
|
| + it != values->end(); ++it) {
|
| + const base::DictionaryValue* dict;
|
| EXPECT_TRUE((*it)->GetAsDictionary(&dict));
|
|
|
| if (dict->GetInteger("dur", &duration_ns))
|
| @@ -187,8 +188,9 @@ class WebrtcBrowserTest: public ContentBrowserTest {
|
| base::ListValue* values;
|
| ASSERT_TRUE(value->GetAsList(&values));
|
|
|
| - for (ListValue::iterator it = values->begin(); it != values->end(); ++it) {
|
| - const DictionaryValue* dict;
|
| + for (base::ListValue::iterator it = values->begin();
|
| + it != values->end(); ++it) {
|
| + const base::DictionaryValue* dict;
|
| std::string kind;
|
| std::string id;
|
| ASSERT_TRUE((*it)->GetAsDictionary(&dict));
|
|
|