Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4226)

Unified Diff: chrome/browser/component_updater/pnacl/pnacl_component_installer.cc

Issue 138553004: Move component updater artifacts into component_updater namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698