Chromium Code Reviews| Index: Source/core/frame/FrameConsole.h |
| diff --git a/Source/core/frame/FrameConsole.h b/Source/core/frame/FrameConsole.h |
| index fb94e1056c15dd6a2db1f9f6ebfb8f285c27ee31..194d5e8733cb39042e934793701f055dec3fbcce 100644 |
| --- a/Source/core/frame/FrameConsole.h |
| +++ b/Source/core/frame/FrameConsole.h |
| @@ -73,8 +73,9 @@ public: |
| private: |
| explicit FrameConsole(LocalFrame&); |
| - LocalFrame& m_frame; |
| + LocalFrame& frame() const { return *m_frame; } |
|
haraken
2014/09/22 05:35:22
Add ASSERT(m_frame).
|
| + RawPtrWillBeMember<LocalFrame> m_frame; |
| OwnPtrWillBeMember<ConsoleMessageStorage> m_consoleMessageStorage; |
| }; |