Chromium Code Reviews| Index: Source/web/InspectorFrontendClientImpl.h |
| diff --git a/Source/web/InspectorFrontendClientImpl.h b/Source/web/InspectorFrontendClientImpl.h |
| index 4e927b182892fbbf901deef297894279c8736dc8..747e58aa1b5a794f2d2ae5066aaef98738015cfc 100644 |
| --- a/Source/web/InspectorFrontendClientImpl.h |
| +++ b/Source/web/InspectorFrontendClientImpl.h |
| @@ -32,6 +32,7 @@ |
| #define InspectorFrontendClientImpl_h |
| #include "core/inspector/InspectorFrontendClient.h" |
| +#include "platform/heap/Handle.h" |
| #include "wtf/Noncopyable.h" |
| namespace blink { |
| @@ -62,7 +63,7 @@ public: |
| private: |
| blink::Page* m_frontendPage; |
|
haraken
2014/07/24 07:16:28
Can we make this a RawPtrWillBeMember?
keishi
2014/07/25 00:59:33
I moved InspectorFrontendClient to the heap so it
|
| WebDevToolsFrontendClient* m_client; |
| - RefPtr<blink::InspectorFrontendHost> m_frontendHost; |
| + RefPtrWillBePersistent<blink::InspectorFrontendHost> m_frontendHost; |
| }; |
| } // namespace blink |