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

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

Issue 1198863006: First version of PerformanceObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add LayoutTest Created 5 years, 3 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 [AsyncCallTracker, Inline=FastReturn] 161 [AsyncCallTracker, Inline=FastReturn]
162 void didClearAllMutationRecords([Keep] ExecutionContext*, MutationObserver*) ; 162 void didClearAllMutationRecords([Keep] ExecutionContext*, MutationObserver*) ;
163 163
164 [AsyncCallTracker, Inline=FastReturn] 164 [AsyncCallTracker, Inline=FastReturn]
165 void willDeliverMutationRecords([Keep] ExecutionContext*, MutationObserver*) ; 165 void willDeliverMutationRecords([Keep] ExecutionContext*, MutationObserver*) ;
166 166
167 [AsyncCallTracker, Inline=FastReturn] 167 [AsyncCallTracker, Inline=FastReturn]
168 void didDeliverMutationRecords(ExecutionContext*); 168 void didDeliverMutationRecords(ExecutionContext*);
169 169
170 [AsyncCallTracker, Inline=FastReturn] 170 [AsyncCallTracker, Inline=FastReturn]
171 void didEnqueuePerformanceObserverEntries([Keep] ExecutionContext*, Performa nceObserver*);
yurys 2015/08/26 19:17:05 You don't need all these changes. Use generic meth
MikeB 2015/08/27 18:02:49 Done.
172
173 [AsyncCallTracker, Inline=FastReturn]
174 void didClearAllPerformanceObservations([Keep] ExecutionContext*, Performanc eObserver*);
175
176 [AsyncCallTracker, Inline=FastReturn]
177 void willDeliverPerformanceObservations([Keep] ExecutionContext*, Performanc eObserver*);
178
179 [AsyncCallTracker, Inline=FastReturn]
180 void didDeliverPerformanceObservations(ExecutionContext*);
181
182 [AsyncCallTracker, Inline=FastReturn]
171 void didPostExecutionContextTask([Keep] ExecutionContext*, ExecutionContextT ask*); 183 void didPostExecutionContextTask([Keep] ExecutionContext*, ExecutionContextT ask*);
172 184
173 [AsyncCallTracker, Inline=FastReturn] 185 [AsyncCallTracker, Inline=FastReturn]
174 void didKillAllExecutionContextTasks([Keep] ExecutionContext*); 186 void didKillAllExecutionContextTasks([Keep] ExecutionContext*);
175 187
176 [AsyncCallTracker, Inline=FastReturn] 188 [AsyncCallTracker, Inline=FastReturn]
177 void willPerformExecutionContextTask([Keep] ExecutionContext*, ExecutionCont extTask*); 189 void willPerformExecutionContextTask([Keep] ExecutionContext*, ExecutionCont extTask*);
178 190
179 [AsyncCallTracker, Inline=FastReturn] 191 [AsyncCallTracker, Inline=FastReturn]
180 void didPerformExecutionContextTask(ExecutionContext*); 192 void didPerformExecutionContextTask(ExecutionContext*);
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 interface InspectorOverrides { 457 interface InspectorOverrides {
446 [CSS, Inline=FastReturn] 458 [CSS, Inline=FastReturn]
447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 459 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
448 460
449 [Worker, Inline=FastReturn] 461 [Worker, Inline=FastReturn]
450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 462 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
451 463
452 [Resource, Inline=FastReturn] 464 [Resource, Inline=FastReturn]
453 bool shouldForceCORSPreflight(Document*); 465 bool shouldForceCORSPreflight(Document*);
454 } 466 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698