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

Side by Side Diff: Source/web/InspectorOverlayImpl.h

Issue 1291903003: Oilpan: Move ChromeClient classes into Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Make Page::PageClients STACK_ALLOCATED(). Created 5 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 | Annotate | Revision Log
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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 void invalidate(); 113 void invalidate();
114 114
115 WebViewImpl* m_webViewImpl; 115 WebViewImpl* m_webViewImpl;
116 String m_pausedInDebuggerMessage; 116 String m_pausedInDebuggerMessage;
117 bool m_inspectModeEnabled; 117 bool m_inspectModeEnabled;
118 RefPtrWillBeMember<Node> m_highlightNode; 118 RefPtrWillBeMember<Node> m_highlightNode;
119 RefPtrWillBeMember<Node> m_eventTargetNode; 119 RefPtrWillBeMember<Node> m_eventTargetNode;
120 InspectorHighlightConfig m_nodeHighlightConfig; 120 InspectorHighlightConfig m_nodeHighlightConfig;
121 OwnPtr<FloatQuad> m_highlightQuad; 121 OwnPtr<FloatQuad> m_highlightQuad;
122 OwnPtrWillBeMember<Page> m_overlayPage; 122 OwnPtrWillBeMember<Page> m_overlayPage;
123 OwnPtr<EmptyChromeClient> m_overlayChromeClient; 123 OwnPtrWillBeMember<InspectorOverlayChromeClient> m_overlayChromeClient;
124 RefPtrWillBeMember<InspectorOverlayHost> m_overlayHost; 124 RefPtrWillBeMember<InspectorOverlayHost> m_overlayHost;
125 InspectorHighlightConfig m_quadHighlightConfig; 125 InspectorHighlightConfig m_quadHighlightConfig;
126 bool m_drawViewSize; 126 bool m_drawViewSize;
127 bool m_drawViewSizeWithGrid; 127 bool m_drawViewSizeWithGrid;
128 bool m_omitTooltip; 128 bool m_omitTooltip;
129 Timer<InspectorOverlayImpl> m_timer; 129 Timer<InspectorOverlayImpl> m_timer;
130 int m_suspendCount; 130 int m_suspendCount;
131 bool m_inLayout; 131 bool m_inLayout;
132 bool m_needsUpdate; 132 bool m_needsUpdate;
133 RawPtrWillBeMember<InspectorOverlay::Listener> m_listener; 133 RawPtrWillBeMember<InspectorOverlay::Listener> m_listener;
134 OwnPtrWillBeMember<LayoutEditor> m_layoutEditor; 134 OwnPtrWillBeMember<LayoutEditor> m_layoutEditor;
135 OwnPtr<PageOverlay> m_pageOverlay; 135 OwnPtr<PageOverlay> m_pageOverlay;
136 }; 136 };
137 137
138 } // namespace blink 138 } // namespace blink
139 139
140 140
141 #endif // InspectorOverlayImpl_h 141 #endif // InspectorOverlayImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698