| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 Member<Node> m_eventTargetNode; | 143 Member<Node> m_eventTargetNode; |
| 144 InspectorHighlightConfig m_nodeHighlightConfig; | 144 InspectorHighlightConfig m_nodeHighlightConfig; |
| 145 std::unique_ptr<FloatQuad> m_highlightQuad; | 145 std::unique_ptr<FloatQuad> m_highlightQuad; |
| 146 Member<Page> m_overlayPage; | 146 Member<Page> m_overlayPage; |
| 147 Member<InspectorOverlayChromeClient> m_overlayChromeClient; | 147 Member<InspectorOverlayChromeClient> m_overlayChromeClient; |
| 148 Member<InspectorOverlayHost> m_overlayHost; | 148 Member<InspectorOverlayHost> m_overlayHost; |
| 149 InspectorHighlightConfig m_quadHighlightConfig; | 149 InspectorHighlightConfig m_quadHighlightConfig; |
| 150 bool m_drawViewSize; | 150 bool m_drawViewSize; |
| 151 bool m_resizeTimerActive; | 151 bool m_resizeTimerActive; |
| 152 bool m_omitTooltip; | 152 bool m_omitTooltip; |
| 153 Timer<InspectorOverlay> m_timer; | 153 TaskRunnerTimer<InspectorOverlay> m_timer; |
| 154 bool m_suspended; | 154 bool m_suspended; |
| 155 bool m_showReloadingBlanket; | 155 bool m_showReloadingBlanket; |
| 156 bool m_inLayout; | 156 bool m_inLayout; |
| 157 bool m_needsUpdate; | 157 bool m_needsUpdate; |
| 158 v8_inspector::V8InspectorSession* m_v8Session; | 158 v8_inspector::V8InspectorSession* m_v8Session; |
| 159 Member<InspectorDOMAgent> m_domAgent; | 159 Member<InspectorDOMAgent> m_domAgent; |
| 160 std::unique_ptr<PageOverlay> m_pageOverlay; | 160 std::unique_ptr<PageOverlay> m_pageOverlay; |
| 161 Member<Node> m_hoveredNodeForInspectMode; | 161 Member<Node> m_hoveredNodeForInspectMode; |
| 162 InspectorDOMAgent::SearchMode m_inspectMode; | 162 InspectorDOMAgent::SearchMode m_inspectMode; |
| 163 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig; | 163 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig; |
| 164 }; | 164 }; |
| 165 | 165 |
| 166 } // namespace blink | 166 } // namespace blink |
| 167 | 167 |
| 168 #endif // InspectorOverlay_h | 168 #endif // InspectorOverlay_h |
| OLD | NEW |