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

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: Sync with latest spec draft (DOMString -> PerformanceEntryType and new PerformanceObserver -> windo… Created 5 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 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*);
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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 interface InspectorOverrides { 448 interface InspectorOverrides {
437 [CSS, Inline=FastReturn] 449 [CSS, Inline=FastReturn]
438 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
439 451
440 [Worker, Inline=FastReturn] 452 [Worker, Inline=FastReturn]
441 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
442 454
443 [Resource, Inline=FastReturn] 455 [Resource, Inline=FastReturn]
444 bool shouldForceCORSPreflight(Document*); 456 bool shouldForceCORSPreflight(Document*);
445 } 457 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698