OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; | 148 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; |
149 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; | 149 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; |
150 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; | 150 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; |
151 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; | 151 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; |
152 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent; | 152 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent; |
153 RawPtrWillBeMember<PageConsoleAgent> m_pageConsoleAgent; | 153 RawPtrWillBeMember<PageConsoleAgent> m_pageConsoleAgent; |
154 | 154 |
155 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; | 155 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; |
156 OwnPtr<InspectorFrontend> m_inspectorFrontend; | 156 OwnPtr<InspectorFrontend> m_inspectorFrontend; |
157 InspectorAgentRegistry m_agents; | 157 InspectorAgentRegistry m_agents; |
| 158 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; |
158 bool m_deferredAgentsInitialized; | 159 bool m_deferredAgentsInitialized; |
159 | 160 |
160 typedef Vector<RefPtr<JSONObject>> NotificationQueue; | 161 typedef Vector<RefPtr<JSONObject>> NotificationQueue; |
161 NotificationQueue m_notificationQueue; | 162 NotificationQueue m_notificationQueue; |
162 String m_stateCookie; | 163 String m_stateCookie; |
163 | 164 |
164 friend class DebuggerTask; | 165 friend class DebuggerTask; |
165 }; | 166 }; |
166 | 167 |
167 } // namespace blink | 168 } // namespace blink |
168 | 169 |
169 #endif | 170 #endif |
OLD | NEW |