OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 13 matching lines...) Expand all Loading... |
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 */ | 27 */ |
28 | 28 |
29 #ifndef InspectorOverlay_h | 29 #ifndef InspectorOverlay_h |
30 #define InspectorOverlay_h | 30 #define InspectorOverlay_h |
31 | 31 |
32 #include "core/inspector/InspectorDOMAgent.h" | 32 #include "core/inspector/InspectorDOMAgent.h" |
33 #include "core/inspector/InspectorOverlayHost.h" | 33 #include "core/inspector/InspectorOverlayHost.h" |
| 34 #include "core/inspector/protocol/InspectorProtocol.h" |
34 #include "platform/Timer.h" | 35 #include "platform/Timer.h" |
35 #include "platform/geometry/FloatQuad.h" | 36 #include "platform/geometry/FloatQuad.h" |
36 #include "platform/geometry/LayoutRect.h" | 37 #include "platform/geometry/LayoutRect.h" |
37 #include "platform/graphics/Color.h" | 38 #include "platform/graphics/Color.h" |
38 #include "platform/heap/Handle.h" | 39 #include "platform/heap/Handle.h" |
39 #include "platform/inspector_protocol/InspectorProtocol.h" | |
40 #include "public/web/WebInputEvent.h" | 40 #include "public/web/WebInputEvent.h" |
41 #include "wtf/RefPtr.h" | 41 #include "wtf/RefPtr.h" |
42 #include "wtf/text/WTFString.h" | 42 #include "wtf/text/WTFString.h" |
43 #include <memory> | 43 #include <memory> |
44 | 44 |
45 namespace v8_inspector { | 45 namespace v8_inspector { |
46 class V8InspectorSession; | 46 class V8InspectorSession; |
47 } | 47 } |
48 | 48 |
49 namespace blink { | 49 namespace blink { |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 std::unique_ptr<PageOverlay> m_pageOverlay; | 168 std::unique_ptr<PageOverlay> m_pageOverlay; |
169 Member<Node> m_hoveredNodeForInspectMode; | 169 Member<Node> m_hoveredNodeForInspectMode; |
170 InspectorDOMAgent::SearchMode m_inspectMode; | 170 InspectorDOMAgent::SearchMode m_inspectMode; |
171 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig; | 171 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig; |
172 }; | 172 }; |
173 | 173 |
174 } // namespace blink | 174 } // namespace blink |
175 | 175 |
176 | 176 |
177 #endif // InspectorOverlay_h | 177 #endif // InspectorOverlay_h |
OLD | NEW |