| Index: chrome/browser/extensions/extension_startup_browsertest.cc
|
| diff --git a/chrome/browser/extensions/extension_startup_browsertest.cc b/chrome/browser/extensions/extension_startup_browsertest.cc
|
| index f1984c59eef5bb5962e704e5815a28479020a807..ad92f48b5d1793dd1f690c706344565743deee7b 100644
|
| --- a/chrome/browser/extensions/extension_startup_browsertest.cc
|
| +++ b/chrome/browser/extensions/extension_startup_browsertest.cc
|
| @@ -98,7 +98,7 @@ class ExtensionStartupTestBase : public InProcessBrowserTest {
|
| int found_extensions = 0;
|
| for (ExtensionSet::const_iterator it = service->extensions()->begin();
|
| it != service->extensions()->end(); ++it)
|
| - if ((*it)->location() != extensions::Extension::COMPONENT)
|
| + if ((*it)->location() != extensions::Manifest::COMPONENT)
|
| found_extensions++;
|
|
|
| ASSERT_EQ(static_cast<uint32>(num_expected_extensions),
|
| @@ -191,7 +191,7 @@ IN_PROC_BROWSER_TEST_F(ExtensionsStartupTest, MAYBE_NoFileAccess) {
|
| browser()->profile())->extension_service();
|
| for (ExtensionSet::const_iterator it = service->extensions()->begin();
|
| it != service->extensions()->end(); ++it) {
|
| - if ((*it)->location() == extensions::Extension::COMPONENT)
|
| + if ((*it)->location() == extensions::Manifest::COMPONENT)
|
| continue;
|
| if (service->AllowFileAccess(*it))
|
| extension_list.push_back(*it);
|
|
|