Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: third_party/WebKit/Source/web/InspectorOverlay.h

Issue 2189263004: [DevTools] Replace profiling{Started,Stopped} with explicit setOverlaySuspended call. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merged Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 InspectorHighlightConfig m_nodeHighlightConfig; 148 InspectorHighlightConfig m_nodeHighlightConfig;
149 std::unique_ptr<FloatQuad> m_highlightQuad; 149 std::unique_ptr<FloatQuad> m_highlightQuad;
150 Member<Page> m_overlayPage; 150 Member<Page> m_overlayPage;
151 Member<InspectorOverlayChromeClient> m_overlayChromeClient; 151 Member<InspectorOverlayChromeClient> m_overlayChromeClient;
152 Member<InspectorOverlayHost> m_overlayHost; 152 Member<InspectorOverlayHost> m_overlayHost;
153 InspectorHighlightConfig m_quadHighlightConfig; 153 InspectorHighlightConfig m_quadHighlightConfig;
154 bool m_drawViewSize; 154 bool m_drawViewSize;
155 bool m_resizeTimerActive; 155 bool m_resizeTimerActive;
156 bool m_omitTooltip; 156 bool m_omitTooltip;
157 Timer<InspectorOverlay> m_timer; 157 Timer<InspectorOverlay> m_timer;
158 int m_suspendCount; 158 bool m_suspended;
159 bool m_inLayout; 159 bool m_inLayout;
160 bool m_needsUpdate; 160 bool m_needsUpdate;
161 V8InspectorSession* m_v8Session; 161 V8InspectorSession* m_v8Session;
162 Member<InspectorDOMAgent> m_domAgent; 162 Member<InspectorDOMAgent> m_domAgent;
163 Member<InspectorCSSAgent> m_cssAgent; 163 Member<InspectorCSSAgent> m_cssAgent;
164 Member<LayoutEditor> m_layoutEditor; 164 Member<LayoutEditor> m_layoutEditor;
165 std::unique_ptr<PageOverlay> m_pageOverlay; 165 std::unique_ptr<PageOverlay> m_pageOverlay;
166 Member<Node> m_hoveredNodeForInspectMode; 166 Member<Node> m_hoveredNodeForInspectMode;
167 InspectorDOMAgent::SearchMode m_inspectMode; 167 InspectorDOMAgent::SearchMode m_inspectMode;
168 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig; 168 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig;
169 }; 169 };
170 170
171 } // namespace blink 171 } // namespace blink
172 172
173 173
174 #endif // InspectorOverlay_h 174 #endif // InspectorOverlay_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698