| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 void didProcessTask() override; | 136 void didProcessTask() override; |
| 137 | 137 |
| 138 void initializeDeferredAgents(); | 138 void initializeDeferredAgents(); |
| 139 | 139 |
| 140 friend class WebDevToolsAgent; | 140 friend class WebDevToolsAgent; |
| 141 static void runDebuggerTask(int sessionId, PassOwnPtr<WebDevToolsAgent::Mess
ageDescriptor>); | 141 static void runDebuggerTask(int sessionId, PassOwnPtr<WebDevToolsAgent::Mess
ageDescriptor>); |
| 142 | 142 |
| 143 WebDevToolsAgentClient* m_client; | 143 WebDevToolsAgentClient* m_client; |
| 144 Member<WebLocalFrameImpl> m_webLocalFrameImpl; | 144 Member<WebLocalFrameImpl> m_webLocalFrameImpl; |
| 145 bool m_attached; | 145 bool m_attached; |
| 146 #if ENABLE(ASSERT) | 146 #if DCHECK_IS_ON() |
| 147 bool m_hasBeenDisposed; | 147 bool m_hasBeenDisposed; |
| 148 #endif | 148 #endif |
| 149 | 149 |
| 150 Member<InstrumentingAgents> m_instrumentingAgents; | 150 Member<InstrumentingAgents> m_instrumentingAgents; |
| 151 Member<InspectorResourceContentLoader> m_resourceContentLoader; | 151 Member<InspectorResourceContentLoader> m_resourceContentLoader; |
| 152 Member<InspectorOverlay> m_overlay; | 152 Member<InspectorOverlay> m_overlay; |
| 153 Member<InspectedFrames> m_inspectedFrames; | 153 Member<InspectedFrames> m_inspectedFrames; |
| 154 | 154 |
| 155 Member<InspectorDOMAgent> m_domAgent; | 155 Member<InspectorDOMAgent> m_domAgent; |
| 156 Member<InspectorPageAgent> m_pageAgent; | 156 Member<InspectorPageAgent> m_pageAgent; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 167 NotificationQueue m_notificationQueue; | 167 NotificationQueue m_notificationQueue; |
| 168 int m_sessionId; | 168 int m_sessionId; |
| 169 String m_stateCookie; | 169 String m_stateCookie; |
| 170 bool m_stateMuted; | 170 bool m_stateMuted; |
| 171 int m_layerTreeId; | 171 int m_layerTreeId; |
| 172 }; | 172 }; |
| 173 | 173 |
| 174 } // namespace blink | 174 } // namespace blink |
| 175 | 175 |
| 176 #endif | 176 #endif |
| OLD | NEW |