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

Unified Diff: chrome/browser/extensions/api/record/record_api_test.cc

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months 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
Index: chrome/browser/extensions/api/record/record_api_test.cc
diff --git a/chrome/browser/extensions/api/record/record_api_test.cc b/chrome/browser/extensions/api/record/record_api_test.cc
index c276ba30ab9756c7fcf06fdf5f49916392635670..f20dfea51f5eda82d3e1f4e15ab5a3a6125bd86c 100644
--- a/chrome/browser/extensions/api/record/record_api_test.cc
+++ b/chrome/browser/extensions/api/record/record_api_test.cc
@@ -241,7 +241,7 @@ class RecordApiTest : public InProcessBrowserTest {
// Verify that the URL list of good and bad URLs was properly handled.
// Needed by several tests.
- bool VerifyURLHandling(const ListValue* result,
+ bool VerifyURLHandling(const base::ListValue* result,
const TestProcessStrategy& strategy) {
// Check that the two bad URLs are returned.
@@ -345,7 +345,7 @@ IN_PROC_BROWSER_TEST_F(RecordApiTest, MAYBE_CheckPlayback) {
// Check for return value with proper stats.
EXPECT_EQ(kTestStatistics, utils::GetString(result.get(), kStatsKey));
- ListValue* errors = NULL;
+ base::ListValue* errors = NULL;
EXPECT_TRUE(result->GetList(kErrorsKey, &errors));
EXPECT_TRUE(VerifyURLHandling(errors, strategy));
}

Powered by Google App Engine
This is Rietveld 408576698