| 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));
|
| }
|
|
|