| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 | 333 |
| 334 [Timeline, Inspector, DOM, Page] | 334 [Timeline, Inspector, DOM, Page] |
| 335 void domContentLoadedEventFired([Keep] LocalFrame*); | 335 void domContentLoadedEventFired([Keep] LocalFrame*); |
| 336 | 336 |
| 337 [Timeline, Page] | 337 [Timeline, Page] |
| 338 void loadEventFired([Keep] LocalFrame*); | 338 void loadEventFired([Keep] LocalFrame*); |
| 339 | 339 |
| 340 [Page] | 340 [Page] |
| 341 void frameAttachedToParent([Keep] LocalFrame*); | 341 void frameAttachedToParent([Keep] LocalFrame*); |
| 342 | 342 |
| 343 [Canvas, Page, CSS] | 343 [Canvas, Page] |
| 344 void frameDetachedFromParent([Keep] LocalFrame*); | 344 void frameDetachedFromParent([Keep] LocalFrame*); |
| 345 | 345 |
| 346 [Console, Resource, CSS, DOM, Inspector, Canvas, Page, PageDebugger] | 346 [Console, Resource, DOM, Inspector, Canvas, Page, PageDebugger] |
| 347 void didCommitLoad([Keep] LocalFrame*, DocumentLoader*); | 347 void didCommitLoad([Keep] LocalFrame*, DocumentLoader*); |
| 348 | 348 |
| 349 [DOM, Inline=FastReturn] | 349 [DOM, Inline=FastReturn] |
| 350 void frameDocumentUpdated([Keep] LocalFrame*); | 350 void frameDocumentUpdated([Keep] LocalFrame*); |
| 351 | 351 |
| 352 [Page] | 352 [Page] |
| 353 void loaderDetachedFromFrame(LocalFrame*, DocumentLoader*); | 353 void loaderDetachedFromFrame(LocalFrame*, DocumentLoader*); |
| 354 | 354 |
| 355 [Page] | 355 [Page] |
| 356 void frameStartedLoading([Keep] LocalFrame*); | 356 void frameStartedLoading([Keep] LocalFrame*); |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 | 537 |
| 538 [Debugger, Inline=FastReturn] | 538 [Debugger, Inline=FastReturn] |
| 539 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); | 539 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); |
| 540 | 540 |
| 541 [Debugger, Inline=FastReturn] | 541 [Debugger, Inline=FastReturn] |
| 542 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise,
const ScriptObject& parentPromise); | 542 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise,
const ScriptObject& parentPromise); |
| 543 | 543 |
| 544 [Debugger, Inline=FastReturn] | 544 [Debugger, Inline=FastReturn] |
| 545 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V
8PromiseCustom::PromiseState, const ScriptValue& result); | 545 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V
8PromiseCustom::PromiseState, const ScriptValue& result); |
| 546 } | 546 } |
| OLD | NEW |