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

Unified Diff: components/policy/core/common/schema_registry.cc

Issue 392233003: Cleanups to the policy code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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: components/policy/core/common/schema_registry.cc
diff --git a/components/policy/core/common/schema_registry.cc b/components/policy/core/common/schema_registry.cc
index 8df24843627cee24efcbcb7d7fa85c0348d87e0a..705df7bdd6014e26900db8963ee5548e8b721bef 100644
--- a/components/policy/core/common/schema_registry.cc
+++ b/components/policy/core/common/schema_registry.cc
@@ -205,9 +205,9 @@ ForwardingSchemaRegistry::~ForwardingSchemaRegistry() {
void ForwardingSchemaRegistry::RegisterComponents(
PolicyDomain domain,
const ComponentMap& components) {
- // POLICY_DOMAIN_CHROME is skipped to avoid spurious updated when a new
- // Profile is created. If the ForwardingSchemaRegistry is meant to be used
- // outside device-level accounts then this should become configurable.
+ // POLICY_DOMAIN_CHROME is skipped to avoid spurious updates when a new
+ // Profile is created. If the ForwardingSchemaRegistry is used outside
+ // device-level accounts then this should become configurable.
if (wrapped_ && domain != POLICY_DOMAIN_CHROME)
wrapped_->RegisterComponents(domain, components);
// Ignore otherwise.

Powered by Google App Engine
This is Rietveld 408576698