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 8557af0ff0f9f749b3b8ec6ca7917116b3e2e869..81921da3995402a436b38f6e66c8251091bdd370 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); |