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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 class InspectorOverlayChromeClient; | 91 class InspectorOverlayChromeClient; |
92 class InspectorPageOverlayDelegate; | 92 class InspectorPageOverlayDelegate; |
93 | 93 |
94 // InspectorOverlayHost::Listener implementation. | 94 // InspectorOverlayHost::Listener implementation. |
95 void overlayResumed() override; | 95 void overlayResumed() override; |
96 void overlaySteppedOver() override; | 96 void overlaySteppedOver() override; |
97 void overlayStartedPropertyChange(const String&) override; | 97 void overlayStartedPropertyChange(const String&) override; |
98 void overlayPropertyChanged(float) override; | 98 void overlayPropertyChanged(float) override; |
99 void overlayEndedPropertyChange() override; | 99 void overlayEndedPropertyChange() override; |
100 void overlayClearSelection(bool) override; | 100 void overlayClearSelection(bool) override; |
| 101 void overlayNextSelector() override; |
| 102 void overlayPreviousSelector() override; |
| 103 String overlayCurrentSelectorInfo() override; |
101 | 104 |
102 // InspectorProfilerAgent::Client implementation. | 105 // InspectorProfilerAgent::Client implementation. |
103 void profilingStarted() override; | 106 void profilingStarted() override; |
104 void profilingStopped() override; | 107 void profilingStopped() override; |
105 | 108 |
106 // InspectorPageAgent::Client implementation. | 109 // InspectorPageAgent::Client implementation. |
107 void pageLayoutInvalidated(bool resized) override; | 110 void pageLayoutInvalidated(bool resized) override; |
108 void setShowViewportSizeOnResize(bool show, bool showGrid) override; | 111 void setShowViewportSizeOnResize(bool show, bool showGrid) override; |
109 void setPausedInDebuggerMessage(const String*) override; | 112 void setPausedInDebuggerMessage(const String*) override; |
110 | 113 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 RefPtrWillBeMember<Node> m_hoveredNodeForInspectMode; | 165 RefPtrWillBeMember<Node> m_hoveredNodeForInspectMode; |
163 InspectorDOMAgent::SearchMode m_inspectMode; | 166 InspectorDOMAgent::SearchMode m_inspectMode; |
164 OwnPtr<InspectorHighlightConfig> m_inspectModeHighlightConfig; | 167 OwnPtr<InspectorHighlightConfig> m_inspectModeHighlightConfig; |
165 bool m_searchingInLayoutEditor; | 168 bool m_searchingInLayoutEditor; |
166 }; | 169 }; |
167 | 170 |
168 } // namespace blink | 171 } // namespace blink |
169 | 172 |
170 | 173 |
171 #endif // InspectorOverlayImpl_h | 174 #endif // InspectorOverlayImpl_h |
OLD | NEW |