| Index: third_party/WebKit/Source/core/frame/LocalFrame.h | 
| diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.h b/third_party/WebKit/Source/core/frame/LocalFrame.h | 
| index 3c1b9143e3451afbc46ed08417c2ac5e6f288838..ab73c8dda7ed93f60157a699565aa8694df1cca2 100644 | 
| --- a/third_party/WebKit/Source/core/frame/LocalFrame.h | 
| +++ b/third_party/WebKit/Source/core/frame/LocalFrame.h | 
| @@ -218,6 +218,10 @@ class CORE_EXPORT LocalFrame final : public Frame, | 
|  | 
| PluginData* pluginData() const; | 
|  | 
| +  bool isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873() const { | 
| +    return m_detached || !client(); | 
| +  } | 
| + | 
| private: | 
| friend class FrameNavigationDisabler; | 
|  | 
| @@ -257,6 +261,7 @@ class CORE_EXPORT LocalFrame final : public Frame, | 
| float m_textZoomFactor; | 
|  | 
| bool m_inViewSourceMode; | 
| +  bool m_detached = false; | 
|  | 
| Member<InstrumentingAgents> m_instrumentingAgents; | 
|  | 
|  |