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

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

Issue 143323014: *** DO NOT LAND *** Attempt to understand Regions complexity Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/InspectorCSSAgent.cpp ('k') | Source/core/page/EventHandler.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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 111
112 [CSS, Inline=FastReturn] 112 [CSS, Inline=FastReturn]
113 void mediaQueryResultChanged(Document*); 113 void mediaQueryResultChanged(Document*);
114 114
115 [DOM, Inline=FastReturn] 115 [DOM, Inline=FastReturn]
116 void didPushShadowRoot([Keep] Element* host, ShadowRoot*); 116 void didPushShadowRoot([Keep] Element* host, ShadowRoot*);
117 117
118 [DOM, Inline=FastReturn] 118 [DOM, Inline=FastReturn]
119 void willPopShadowRoot([Keep] Element* host, ShadowRoot*); 119 void willPopShadowRoot([Keep] Element* host, ShadowRoot*);
120 120
121 [CSS, Inline=FastReturn]
122 void didCreateNamedFlow([Keep] Document*, NamedFlow*);
123
124 [CSS, Inline=FastReturn]
125 void willRemoveNamedFlow([Keep] Document*, NamedFlow*);
126
127 [CSS, Inline=FastReturn]
128 void didUpdateRegionLayout([Keep] Document*, NamedFlow*);
129
130 [CSS, Inline=FastReturn]
131 void didChangeRegionOverset([Keep] Document*, NamedFlow*);
132
133 [DOMDebugger, Inline=FastReturn] 121 [DOMDebugger, Inline=FastReturn]
134 void willSendXMLHttpRequest(ExecutionContext*, const String& url); 122 void willSendXMLHttpRequest(ExecutionContext*, const String& url);
135 123
136 [DOMDebugger, Inline=FastReturn] 124 [DOMDebugger, Inline=FastReturn]
137 void didFireWebGLError(Element*, const String& errorName); 125 void didFireWebGLError(Element*, const String& errorName);
138 126
139 [DOMDebugger, Inline=FastReturn] 127 [DOMDebugger, Inline=FastReturn]
140 void didFireWebGLWarning(Element*); 128 void didFireWebGLWarning(Element*);
141 129
142 [DOMDebugger, Inline=FastReturn] 130 [DOMDebugger, Inline=FastReturn]
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 interface InspectorCanvasInstrumentation { 537 interface InspectorCanvasInstrumentation {
550 538
551 #include "bindings/v8/ScriptObject.h" 539 #include "bindings/v8/ScriptObject.h"
552 540
553 [Canvas] 541 [Canvas]
554 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 542 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
555 543
556 [Canvas] 544 [Canvas]
557 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 545 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
558 } 546 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698