| Index: third_party/WebKit/Source/core/dom/IntersectionObservation.h
 | 
| diff --git a/third_party/WebKit/Source/core/dom/IntersectionObservation.h b/third_party/WebKit/Source/core/dom/IntersectionObservation.h
 | 
| index d8e69ef09417e9662ecf53708ae47042acabf789..5df531f4b85acc1b80e1adb222bdca06df8f8d1f 100644
 | 
| --- a/third_party/WebKit/Source/core/dom/IntersectionObservation.h
 | 
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObservation.h
 | 
| @@ -28,8 +28,6 @@ public:
 | 
|  
 | 
|      IntersectionObserver& observer() const { return *m_observer; }
 | 
|      Element* target() const;
 | 
| -    bool isActive() const { return m_active; }
 | 
| -    void setActive(bool active) { m_active = active; }
 | 
|      unsigned lastThresholdIndex() const { return m_lastThresholdIndex; }
 | 
|      void setLastThresholdIndex(unsigned index) { m_lastThresholdIndex = index; }
 | 
|      bool shouldReportRootBounds() const { return m_shouldReportRootBounds; }
 | 
| @@ -52,7 +50,6 @@ private:
 | 
|      // this can be changed to WeakMember<Element>.
 | 
|      WeakPtrWillBeWeakMember<Node> m_target;
 | 
|  
 | 
| -    unsigned m_active : 1;
 | 
|      unsigned m_shouldReportRootBounds : 1;
 | 
|      unsigned m_lastThresholdIndex : 30;
 | 
|  };
 | 
| 
 |