| Index: Source/core/css/RuleSet.h
 | 
| diff --git a/Source/core/css/RuleSet.h b/Source/core/css/RuleSet.h
 | 
| index d8249a3edb96428b519a96886a089282b743663c..f7ed2bd1d9a3d963f28cf9a1404424ce88519d5c 100644
 | 
| --- a/Source/core/css/RuleSet.h
 | 
| +++ b/Source/core/css/RuleSet.h
 | 
| @@ -37,18 +37,15 @@ enum AddRuleFlags {
 | 
|      RuleHasNoSpecialState         = 0,
 | 
|      RuleHasDocumentSecurityOrigin = 1,
 | 
|      RuleCanUseFastCheckSelector   = 1 << 1,
 | 
| -    RuleIsInRegionRule            = 1 << 2,
 | 
|  };
 | 
|  
 | 
|  enum PropertyWhitelistType {
 | 
|      PropertyWhitelistNone   = 0,
 | 
| -    PropertyWhitelistRegion,
 | 
|      PropertyWhitelistCue
 | 
|  };
 | 
|  
 | 
|  class CSSSelector;
 | 
|  class MediaQueryEvaluator;
 | 
| -class StyleRuleRegion;
 | 
|  class StyleSheetContents;
 | 
|  
 | 
|  struct MinimalRuleData {
 | 
| @@ -161,8 +158,6 @@ public:
 | 
|          OwnPtr<RuleSet> ruleSet;
 | 
|      };
 | 
|  
 | 
| -    Vector<RuleSetSelectorPair> m_regionSelectorsAndRuleSets;
 | 
| -
 | 
|  private:
 | 
|      typedef HashMap<StringImpl*, OwnPtr<LinkedStack<RuleData> > > PendingRuleMap;
 | 
|      typedef HashMap<StringImpl*, OwnPtr<RuleData> > CompactRuleMap;
 | 
| @@ -177,7 +172,6 @@ private:
 | 
|      void addViewportRule(StyleRuleViewport*);
 | 
|      void addFontFaceRule(StyleRuleFontFace*);
 | 
|      void addKeyframesRule(StyleRuleKeyframes*);
 | 
| -    void addRegionRule(StyleRuleRegion*, bool hasDocumentSecurityOrigin);
 | 
|  
 | 
|      void addChildRules(const Vector<RefPtr<StyleRuleBase> >&, const MediaQueryEvaluator& medium, AddRuleFlags);
 | 
|      bool findBestRuleSetAndAdd(const CSSSelector*, RuleData&);
 | 
| 
 |