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

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

Issue 1839643009: RELEASE_ASSERT -> CHECK and ASSERT -> DCHECK in web. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Return DCHECK_IS_ON checks. Created 4 years, 8 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) 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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebDataSourceImpl.cpp ('k') | third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698