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

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

Issue 900543003: DevTools: do not abuse inspector controller for the front-end side plumbing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed initializer. Created 5 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
« no previous file with comments | « Source/core/inspector/InspectorInspectorAgent.cpp ('k') | Source/core/loader/FrameLoader.cpp » ('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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 * 61 *
62 * Parameters with type PassRefPtr<T> are converted to raw pointers, 62 * Parameters with type PassRefPtr<T> are converted to raw pointers,
63 * so reference will not be passed or released until all agents are notified. 63 * so reference will not be passed or released until all agents are notified.
64 */ 64 */
65 65
66 interface InspectorInstrumentation { 66 interface InspectorInstrumentation {
67 67
68 #include "core/dom/PseudoElement.h" 68 #include "core/dom/PseudoElement.h"
69 69
70 // We should call PageDebuggerAgent method first otherwise this method reset s script cache and removes scripts executed by other agents. 70 // We should call PageDebuggerAgent method first otherwise this method reset s script cache and removes scripts executed by other agents.
71 [PageDebugger, Page, Inspector, PageRuntime] 71 [PageDebugger, Page, PageRuntime]
72 void didClearDocumentOfWindowObject([Keep] LocalFrame*); 72 void didClearDocumentOfWindowObject([Keep] LocalFrame*);
73 73
74 [DOMDebugger, Inline=FastReturn] 74 [DOMDebugger, Inline=FastReturn]
75 void willCloseWindow(ExecutionContext*); 75 void willCloseWindow(ExecutionContext*);
76 76
77 [DOMDebugger, Inline=FastReturn] 77 [DOMDebugger, Inline=FastReturn]
78 void willInsertDOMNode([Keep] Node* parent); 78 void willInsertDOMNode([Keep] Node* parent);
79 79
80 [DOM, DOMDebugger, Inline=FastReturn] 80 [DOM, DOMDebugger, Inline=FastReturn]
81 void didInsertDOMNode([Keep] Node*); 81 void didInsertDOMNode([Keep] Node*);
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 interface InspectorCanvasInstrumentation { 530 interface InspectorCanvasInstrumentation {
531 531
532 #include "bindings/core/v8/ScriptValue.h" 532 #include "bindings/core/v8/ScriptValue.h"
533 533
534 [Canvas] 534 [Canvas]
535 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 535 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
536 536
537 [Canvas] 537 [Canvas]
538 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 538 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
539 } 539 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInspectorAgent.cpp ('k') | Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698