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

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

Issue 447553002: Remove inspector deadcode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 [Resource] 286 [Resource]
287 void markResourceAsCached(Page*, unsigned long identifier); 287 void markResourceAsCached(Page*, unsigned long identifier);
288 288
289 [Timeline, Resource, Console] // Console should come AFTER Resource notifica tion, front-end relies on this. 289 [Timeline, Resource, Console] // Console should come AFTER Resource notifica tion, front-end relies on this.
290 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier , DocumentLoader*, const ResourceResponse&, ResourceLoader*); 290 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier , DocumentLoader*, const ResourceResponse&, ResourceLoader*);
291 291
292 [Inline=Forward] 292 [Inline=Forward]
293 void continueAfterXFrameOptionsDenied(LocalFrame* frame, DocumentLoader* loa der, unsigned long identifier, const ResourceResponse& r); 293 void continueAfterXFrameOptionsDenied(LocalFrame* frame, DocumentLoader* loa der, unsigned long identifier, const ResourceResponse& r);
294 294
295 [Inline=Forward] 295 [Inline=Forward]
296 void continueWithPolicyDownload(LocalFrame* frame, DocumentLoader* loader, u nsigned long identifier, const ResourceResponse& r);
297
298 [Inline=Forward]
299 void continueWithPolicyIgnore(LocalFrame* frame, DocumentLoader* loader, uns igned long identifier, const ResourceResponse& r); 296 void continueWithPolicyIgnore(LocalFrame* frame, DocumentLoader* loader, uns igned long identifier, const ResourceResponse& r);
300 297
301 [Timeline, Resource, Inline=FastReturn] 298 [Timeline, Resource, Inline=FastReturn]
302 void didReceiveData([Keep] LocalFrame*, unsigned long identifier, const char * data, int dataLength, int encodedDataLength); 299 void didReceiveData([Keep] LocalFrame*, unsigned long identifier, const char * data, int dataLength, int encodedDataLength);
303 300
304 [Timeline, Resource] 301 [Timeline, Resource]
305 void didFinishLoading(LocalFrame* frame, unsigned long identifier, DocumentL oader*, double finishTime, int64_t encodedDataLength); 302 void didFinishLoading(LocalFrame* frame, unsigned long identifier, DocumentL oader*, double finishTime, int64_t encodedDataLength);
306 303
307 [Resource] 304 [Resource]
308 void didReceiveCORSRedirectResponse([Keep] LocalFrame*, unsigned long identi fier, DocumentLoader*, const ResourceResponse&, ResourceLoader*); 305 void didReceiveCORSRedirectResponse([Keep] LocalFrame*, unsigned long identi fier, DocumentLoader*, const ResourceResponse&, ResourceLoader*);
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 interface InspectorCanvasInstrumentation { 525 interface InspectorCanvasInstrumentation {
529 526
530 #include "bindings/core/v8/ScriptValue.h" 527 #include "bindings/core/v8/ScriptValue.h"
531 528
532 [Canvas] 529 [Canvas]
533 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 530 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
534 531
535 [Canvas] 532 [Canvas]
536 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 533 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
537 } 534 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698