| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 Page* overlayPage(); | 160 Page* overlayPage(); |
| 161 void reset(const IntSize& viewportSize, int scrollX, int scrollY); | 161 void reset(const IntSize& viewportSize, int scrollX, int scrollY); |
| 162 void evaluateInOverlay(const String& method, const String& argument); | 162 void evaluateInOverlay(const String& method, const String& argument); |
| 163 void evaluateInOverlay(const String& method, PassRefPtr<JSONValue> argument)
; | 163 void evaluateInOverlay(const String& method, PassRefPtr<JSONValue> argument)
; |
| 164 void onTimer(Timer<InspectorOverlay>*); | 164 void onTimer(Timer<InspectorOverlay>*); |
| 165 | 165 |
| 166 Page* m_page; | 166 Page* m_page; |
| 167 InspectorClient* m_client; | 167 InspectorClient* m_client; |
| 168 String m_pausedInDebuggerMessage; | 168 String m_pausedInDebuggerMessage; |
| 169 bool m_inspectModeEnabled; | 169 bool m_inspectModeEnabled; |
| 170 RefPtr<Node> m_highlightNode; | 170 RefPtrWillBePersistent<Node> m_highlightNode; |
| 171 RefPtr<Node> m_eventTargetNode; | 171 RefPtrWillBePersistent<Node> m_eventTargetNode; |
| 172 HighlightConfig m_nodeHighlightConfig; | 172 HighlightConfig m_nodeHighlightConfig; |
| 173 OwnPtr<FloatQuad> m_highlightQuad; | 173 OwnPtr<FloatQuad> m_highlightQuad; |
| 174 OwnPtrWillBePersistent<Page> m_overlayPage; | 174 OwnPtrWillBePersistent<Page> m_overlayPage; |
| 175 OwnPtr<EmptyChromeClient> m_overlayChromeClient; | 175 OwnPtr<EmptyChromeClient> m_overlayChromeClient; |
| 176 RefPtr<InspectorOverlayHost> m_overlayHost; | 176 RefPtr<InspectorOverlayHost> m_overlayHost; |
| 177 HighlightConfig m_quadHighlightConfig; | 177 HighlightConfig m_quadHighlightConfig; |
| 178 bool m_drawViewSize; | 178 bool m_drawViewSize; |
| 179 bool m_drawViewSizeWithGrid; | 179 bool m_drawViewSizeWithGrid; |
| 180 bool m_omitTooltip; | 180 bool m_omitTooltip; |
| 181 Timer<InspectorOverlay> m_timer; | 181 Timer<InspectorOverlay> m_timer; |
| 182 int m_activeProfilerCount; | 182 int m_activeProfilerCount; |
| 183 }; | 183 }; |
| 184 | 184 |
| 185 } // namespace WebCore | 185 } // namespace WebCore |
| 186 | 186 |
| 187 | 187 |
| 188 #endif // InspectorOverlay_h | 188 #endif // InspectorOverlay_h |
| OLD | NEW |