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

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

Issue 156623005: Add transfer size paramater to didFinishLoading [3/3] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 [Inline=Forward] 315 [Inline=Forward]
316 void continueWithPolicyDownload(Frame* frame, DocumentLoader* loader, unsign ed long identifier, const ResourceResponse& r); 316 void continueWithPolicyDownload(Frame* frame, DocumentLoader* loader, unsign ed long identifier, const ResourceResponse& r);
317 317
318 [Inline=Forward] 318 [Inline=Forward]
319 void continueWithPolicyIgnore(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r); 319 void continueWithPolicyIgnore(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r);
320 320
321 [Resource] 321 [Resource]
322 void didReceiveData(Frame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength); 322 void didReceiveData(Frame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength);
323 323
324 [Timeline, Resource] 324 [Timeline, Resource]
325 void didFinishLoading(Frame* frame, unsigned long identifier, DocumentLoader *, double finishTime); 325 void didFinishLoading(Frame* frame, unsigned long identifier, DocumentLoader *, double finishTime, int64_t encodedDataLength);
326 326
327 [Resource] 327 [Resource]
328 void didReceiveCORSRedirectResponse([Keep] Frame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, ResourceLoader*); 328 void didReceiveCORSRedirectResponse([Keep] Frame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, ResourceLoader*);
329 329
330 [Timeline, Resource, Console] // Console should come AFTER Resource notifica tion, front-end relies on this. 330 [Timeline, Resource, Console] // Console should come AFTER Resource notifica tion, front-end relies on this.
331 void didFailLoading(Frame* frame, unsigned long identifier, DocumentLoader*, const ResourceError&); 331 void didFailLoading(Frame* frame, unsigned long identifier, DocumentLoader*, const ResourceError&);
332 332
333 [Resource] 333 [Resource]
334 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi gned long identifier, ThreadableLoaderClient* client); 334 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi gned long identifier, ThreadableLoaderClient* client);
335 335
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 interface InspectorCanvasInstrumentation { 543 interface InspectorCanvasInstrumentation {
544 544
545 #include "bindings/v8/ScriptObject.h" 545 #include "bindings/v8/ScriptObject.h"
546 546
547 [Canvas] 547 [Canvas]
548 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 548 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
549 549
550 [Canvas] 550 [Canvas]
551 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 551 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
552 } 552 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698