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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl

Issue 2649323005: Cleanly detach XHR and other pending loader clients from Inspector. (Closed)
Patch Set: rebalance XHR disposal steps Created 3 years, 10 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/core/inspector/InspectorNetworkAgent.h » ('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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 205
206 [Network] 206 [Network]
207 void willStartFetch(ExecutionContext*, ThreadableLoaderClient*); 207 void willStartFetch(ExecutionContext*, ThreadableLoaderClient*);
208 208
209 [Network] 209 [Network]
210 void didFailFetch(ExecutionContext*, ThreadableLoaderClient*); 210 void didFailFetch(ExecutionContext*, ThreadableLoaderClient*);
211 211
212 [Network] 212 [Network]
213 void didFinishFetch([Keep] ExecutionContext*, ThreadableLoaderClient*, const AtomicString& method, const String& url); 213 void didFinishFetch([Keep] ExecutionContext*, ThreadableLoaderClient*, const AtomicString& method, const String& url);
214 214
215 // Detach and remove all references to the given client.
216 [Network]
217 void detachClientRequest(ExecutionContext*, ThreadableLoaderClient*);
218
215 [Network] 219 [Network]
216 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin g& sourceString); 220 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin g& sourceString);
217 221
218 [DOMDebugger] 222 [DOMDebugger]
219 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT ext); 223 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT ext);
220 224
221 [Network] 225 [Network]
222 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); 226 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier);
223 227
224 [DOM, Page] 228 [DOM, Page]
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 328
325 [Worker] 329 [Worker]
326 bool shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context); 330 bool shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context);
327 331
328 [Network] 332 [Network]
329 bool shouldForceCORSPreflight(Document*); 333 bool shouldForceCORSPreflight(Document*);
330 334
331 [Network] 335 [Network]
332 bool shouldBlockRequest(LocalFrame*, const ResourceRequest&); 336 bool shouldBlockRequest(LocalFrame*, const ResourceRequest&);
333 } 337 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698