| Index: chrome/browser/extensions/extension_override_apitest.cc
|
| diff --git a/chrome/browser/extensions/extension_override_apitest.cc b/chrome/browser/extensions/extension_override_apitest.cc
|
| index d0989a6bd48518ac13a2ff5dcb10a89ddaad777f..dcaa3cddf1823a6602cd7c77975d46d597e1f989 100644
|
| --- a/chrome/browser/extensions/extension_override_apitest.cc
|
| +++ b/chrome/browser/extensions/extension_override_apitest.cc
|
| @@ -27,7 +27,7 @@ class ExtensionOverrideTest : public ExtensionApiTest {
|
| browser()->profile()->GetPrefs()->GetDictionary(
|
| ExtensionWebUI::kExtensionURLOverrides);
|
|
|
| - const ListValue* values = NULL;
|
| + const base::ListValue* values = NULL;
|
| if (!overrides->GetList("history", &values))
|
| return false;
|
|
|
| @@ -125,7 +125,7 @@ IN_PROC_BROWSER_TEST_F(ExtensionOverrideTest, ShouldCleanUpDuplicateEntries) {
|
| // a preferences file without corresponding UnloadExtension() calls. This is
|
| // the same as the above test, except for that it is testing the case where
|
| // the file already contains dupes when an extension is loaded.
|
| - ListValue* list = new ListValue();
|
| + base::ListValue* list = new base::ListValue();
|
| for (size_t i = 0; i < 3; ++i)
|
| list->Append(Value::CreateStringValue("http://www.google.com/"));
|
|
|
|
|