| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 } | 73 } |
| 74 | 74 |
| 75 ~InspectorOverlay() override; | 75 ~InspectorOverlay() override; |
| 76 DECLARE_TRACE(); | 76 DECLARE_TRACE(); |
| 77 | 77 |
| 78 void init(InspectorCSSAgent*, InspectorDebuggerAgent*, InspectorDOMAgent*); | 78 void init(InspectorCSSAgent*, InspectorDebuggerAgent*, InspectorDOMAgent*); |
| 79 | 79 |
| 80 void clear(); | 80 void clear(); |
| 81 bool handleInputEvent(const WebInputEvent&); | 81 bool handleInputEvent(const WebInputEvent&); |
| 82 void pageLayoutInvalidated(); | 82 void pageLayoutInvalidated(); |
| 83 void setPausedInDebuggerMessage(const String*); | 83 void setPausedInDebuggerMessage(const String&); |
| 84 | 84 |
| 85 // Does not yet include paint. | 85 // Does not yet include paint. |
| 86 void updateAllLifecyclePhases(); | 86 void updateAllLifecyclePhases(); |
| 87 | 87 |
| 88 PageOverlay* pageOverlay() { return m_pageOverlay.get(); }; | 88 PageOverlay* pageOverlay() { return m_pageOverlay.get(); }; |
| 89 String evaluateInOverlayForTest(const String&); | 89 String evaluateInOverlayForTest(const String&); |
| 90 | 90 |
| 91 private: | 91 private: |
| 92 explicit InspectorOverlay(WebViewImpl*); | 92 explicit InspectorOverlay(WebViewImpl*); |
| 93 class InspectorOverlayChromeClient; | 93 class InspectorOverlayChromeClient; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 OwnPtr<PageOverlay> m_pageOverlay; | 158 OwnPtr<PageOverlay> m_pageOverlay; |
| 159 RefPtrWillBeMember<Node> m_hoveredNodeForInspectMode; | 159 RefPtrWillBeMember<Node> m_hoveredNodeForInspectMode; |
| 160 InspectorDOMAgent::SearchMode m_inspectMode; | 160 InspectorDOMAgent::SearchMode m_inspectMode; |
| 161 OwnPtr<InspectorHighlightConfig> m_inspectModeHighlightConfig; | 161 OwnPtr<InspectorHighlightConfig> m_inspectModeHighlightConfig; |
| 162 }; | 162 }; |
| 163 | 163 |
| 164 } // namespace blink | 164 } // namespace blink |
| 165 | 165 |
| 166 | 166 |
| 167 #endif // InspectorOverlay_h | 167 #endif // InspectorOverlay_h |
| OLD | NEW |