| 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 InspectorRenderingAgent_h | 5 #ifndef InspectorRenderingAgent_h |
| 6 #define InspectorRenderingAgent_h | 6 #define InspectorRenderingAgent_h |
| 7 | 7 |
| 8 #include "core/inspector/InspectorBaseAgent.h" | 8 #include "core/inspector/InspectorBaseAgent.h" |
| 9 #include "core/inspector/protocol/Rendering.h" |
| 9 | 10 |
| 10 namespace blink { | 11 namespace blink { |
| 11 | 12 |
| 12 class InspectorOverlay; | 13 class InspectorOverlay; |
| 13 class WebLocalFrameImpl; | 14 class WebLocalFrameImpl; |
| 14 class WebViewImpl; | 15 class WebViewImpl; |
| 15 | 16 |
| 16 class InspectorRenderingAgent final : public InspectorBaseAgent<protocol::Render
ing::Metainfo> { | 17 class InspectorRenderingAgent final : public InspectorBaseAgent<protocol::Render
ing::Metainfo> { |
| 17 WTF_MAKE_NONCOPYABLE(InspectorRenderingAgent); | 18 WTF_MAKE_NONCOPYABLE(InspectorRenderingAgent); |
| 18 public: | 19 public: |
| (...skipping 18 matching lines...) Expand all Loading... |
| 37 WebViewImpl* webViewImpl(); | 38 WebViewImpl* webViewImpl(); |
| 38 | 39 |
| 39 Member<WebLocalFrameImpl> m_webLocalFrameImpl; | 40 Member<WebLocalFrameImpl> m_webLocalFrameImpl; |
| 40 Member<InspectorOverlay> m_overlay; | 41 Member<InspectorOverlay> m_overlay; |
| 41 }; | 42 }; |
| 42 | 43 |
| 43 | 44 |
| 44 } // namespace blink | 45 } // namespace blink |
| 45 | 46 |
| 46 #endif // !defined(InspectorRenderingAgent_h) | 47 #endif // !defined(InspectorRenderingAgent_h) |
| OLD | NEW |