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

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

Issue 17848002: Web Inspector: Integrate new regionOversetChange event into inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years, 5 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 [CSS, Inline=FastReturn] 106 [CSS, Inline=FastReturn]
107 void didCreateNamedFlow([Keep] Document*, NamedFlow*); 107 void didCreateNamedFlow([Keep] Document*, NamedFlow*);
108 108
109 [CSS, Inline=FastReturn] 109 [CSS, Inline=FastReturn]
110 void willRemoveNamedFlow([Keep] Document*, NamedFlow*); 110 void willRemoveNamedFlow([Keep] Document*, NamedFlow*);
111 111
112 [CSS, Inline=FastReturn] 112 [CSS, Inline=FastReturn]
113 void didUpdateRegionLayout([Keep] Document*, NamedFlow*); 113 void didUpdateRegionLayout([Keep] Document*, NamedFlow*);
114 114
115 [CSS, Inline=FastReturn]
116 void didChangeRegionOverset([Keep] Document*, NamedFlow*);
117
115 [DOMDebugger, Inline=FastReturn] 118 [DOMDebugger, Inline=FastReturn]
116 void willSendXMLHttpRequest(ScriptExecutionContext*, const String& url); 119 void willSendXMLHttpRequest(ScriptExecutionContext*, const String& url);
117 120
118 [DOMDebugger, Inline=FastReturn] 121 [DOMDebugger, Inline=FastReturn]
119 void didFireWebGLError(Document*, const String& errorName); 122 void didFireWebGLError(Document*, const String& errorName);
120 123
121 [Timeline, Inline=FastReturn] 124 [Timeline, Inline=FastReturn]
122 void didScheduleResourceRequest([Keep] Document*, const String& url); 125 void didScheduleResourceRequest([Keep] Document*, const String& url);
123 126
124 [DOMDebugger, Timeline, Inline=FastReturn] 127 [DOMDebugger, Timeline, Inline=FastReturn]
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 interface InspectorCanvasInstrumentation { 497 interface InspectorCanvasInstrumentation {
495 498
496 #include "bindings/v8/ScriptObject.h" 499 #include "bindings/v8/ScriptObject.h"
497 500
498 [Canvas] 501 [Canvas]
499 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 502 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
500 503
501 [Canvas] 504 [Canvas]
502 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 505 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
503 } 506 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/RenderNamedFlowThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698