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

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

Issue 23582002: CORS: Update the redirection status in Inspector Network tab for CORS requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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) 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 269
270 [Inline=Forward] 270 [Inline=Forward]
271 void continueWithPolicyIgnore(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r); 271 void continueWithPolicyIgnore(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r);
272 272
273 [Resource] 273 [Resource]
274 void didReceiveData(Frame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength); 274 void didReceiveData(Frame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength);
275 275
276 [Timeline, Resource] 276 [Timeline, Resource]
277 void didFinishLoading(Frame* frame, unsigned long identifier, DocumentLoader *, double finishTime); 277 void didFinishLoading(Frame* frame, unsigned long identifier, DocumentLoader *, double finishTime);
278 278
279 [Resource]
280 void didReceiveCORSRedirectResponse(Frame*, unsigned long identifier, Docume ntLoader*, const ResourceResponse&, ResourceLoader*);
281
279 [Timeline, Resource, Console] // Console should come AFTER Resource notifica tion, front-end relies on this. 282 [Timeline, Resource, Console] // Console should come AFTER Resource notifica tion, front-end relies on this.
280 void didFailLoading(Frame* frame, unsigned long identifier, DocumentLoader*, const ResourceError&); 283 void didFailLoading(Frame* frame, unsigned long identifier, DocumentLoader*, const ResourceError&);
281 284
282 [Resource] 285 [Resource]
283 void documentThreadableLoaderStartedLoadingForClient(ScriptExecutionContext* , unsigned long identifier, ThreadableLoaderClient* client); 286 void documentThreadableLoaderStartedLoadingForClient(ScriptExecutionContext* , unsigned long identifier, ThreadableLoaderClient* client);
284 287
285 [Resource] 288 [Resource]
286 void willLoadXHR(ScriptExecutionContext*, ThreadableLoaderClient* client, co nst String& method, const KURL& url, bool async, PassRefPtr<FormData>, const HTT PHeaderMap& headers, bool includeCredentials); 289 void willLoadXHR(ScriptExecutionContext*, ThreadableLoaderClient* client, co nst String& method, const KURL& url, bool async, PassRefPtr<FormData>, const HTT PHeaderMap& headers, bool includeCredentials);
287 290
288 [Resource] 291 [Resource]
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 interface InspectorCanvasInstrumentation { 499 interface InspectorCanvasInstrumentation {
497 500
498 #include "bindings/v8/ScriptObject.h" 501 #include "bindings/v8/ScriptObject.h"
499 502
500 [Canvas] 503 [Canvas]
501 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 504 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
502 505
503 [Canvas] 506 [Canvas]
504 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 507 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
505 } 508 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698