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

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

Issue 2644803002: Convert timer for InspectorOverlay (Closed)
Patch Set: Used UnspecedTimer for the task type. Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/InspectorOverlay.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/InspectorOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698