From 440d7b28d41aa0efaf9cf05e695647149904b892 Mon Sep 17 00:00:00 2001 From: Michael Layzell Date: Tue, 16 Jun 2015 08:12:00 -0400 Subject: [PATCH] Bug 1167663 - Mark nsCSSKeyframeStyleDeclaration/nsCSSPageStyleDeclaration::mRule as MOZ_NON_OWNING_REF. r=dbaron --HG-- extra : rebase_source : 621a2d04d82fd50bf5dfa35bb2266f7462d4d6e1 --- layout/style/nsCSSRules.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/style/nsCSSRules.h b/layout/style/nsCSSRules.h index 07741fff80a3..4ff5542218ea 100644 --- a/layout/style/nsCSSRules.h +++ b/layout/style/nsCSSRules.h @@ -379,7 +379,7 @@ protected: // This reference is not reference-counted. The rule object tells us // when it's about to go away. - nsCSSKeyframeRule *mRule; + nsCSSKeyframeRule* MOZ_NON_OWNING_REF mRule; }; class nsCSSKeyframeRule final : public mozilla::css::Rule, @@ -512,7 +512,7 @@ protected: // This reference is not reference-counted. The rule object tells us // when it's about to go away. - nsCSSPageRule *mRule; + nsCSSPageRule* MOZ_NON_OWNING_REF mRule; }; class nsCSSPageRule final : public mozilla::css::Rule,