Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |