| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef InspectorEmulationAgent_h | 5 #ifndef InspectorEmulationAgent_h |
| 6 #define InspectorEmulationAgent_h | 6 #define InspectorEmulationAgent_h |
| 7 | 7 |
| 8 #include "core/InspectorFrontend.h" | 8 #include "core/InspectorFrontend.h" |
| 9 #include "core/inspector/InspectorBaseAgent.h" | 9 #include "core/inspector/InspectorBaseAgent.h" |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 void restore() override; | 35 void restore() override; |
| 36 void discardAgent() override; | 36 void discardAgent() override; |
| 37 void didCommitLoadForLocalFrame(LocalFrame*) override; | 37 void didCommitLoadForLocalFrame(LocalFrame*) override; |
| 38 | 38 |
| 39 DECLARE_VIRTUAL_TRACE(); | 39 DECLARE_VIRTUAL_TRACE(); |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 explicit InspectorEmulationAgent(WebLocalFrameImpl*); | 42 explicit InspectorEmulationAgent(WebLocalFrameImpl*); |
| 43 WebViewImpl* webViewImpl(); | 43 WebViewImpl* webViewImpl(); |
| 44 | 44 |
| 45 WebLocalFrameImpl* m_webLocalFrameImpl; | 45 RawPtrWillBeMember<WebLocalFrameImpl> m_webLocalFrameImpl; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 | 48 |
| 49 } // namespace blink | 49 } // namespace blink |
| 50 | 50 |
| 51 | 51 |
| 52 #endif // !defined(InspectorEmulationAgent_h) | 52 #endif // !defined(InspectorEmulationAgent_h) |
| OLD | NEW |