Index: chrome/browser/component_updater/pnacl/pnacl_component_installer.cc |
diff --git a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc |
index 2f9a10e36e89eae0618c725f3ca75a729151d18b..aba78b021978e3502c6ce76721da6157eaa23627 100644 |
--- a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc |
+++ b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc |
@@ -33,6 +33,8 @@ |
using chrome::OmahaQueryParams; |
using content::BrowserThread; |
+namespace component_updater { |
+ |
namespace { |
// Name of the Pnacl component specified in the manifest. |
@@ -455,11 +457,13 @@ void PnaclComponentInstaller::ReRegisterPnacl() { |
base::Bind(&GetProfileInformation, this)); |
} |
+} // namespace component_updater |
namespace pnacl { |
bool NeedsOnDemandUpdate() { |
- return base::subtle::NoBarrier_Load(&needs_on_demand_update) != 0; |
+ return base::subtle::NoBarrier_Load( |
+ &component_updater::needs_on_demand_update) != 0; |
} |
} // namespace pnacl |