Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(861)

Unified Diff: content/browser/media/webrtc_browsertest.cc

Issue 108603005: Update uses of Value in chromeos/, cloud_print/, components/, content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/indexed_db/indexed_db_internals_ui.cc ('k') | content/browser/webui/generic_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « content/browser/indexed_db/indexed_db_internals_ui.cc ('k') | content/browser/webui/generic_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698