| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 222 |
| 223 [Timeline, Resource, Page, Inline=FastReturn] | 223 [Timeline, Resource, Page, Inline=FastReturn] |
| 224 void didRecalculateStyle(const InspectorInstrumentationCookie&); | 224 void didRecalculateStyle(const InspectorInstrumentationCookie&); |
| 225 | 225 |
| 226 [Timeline, Inline=FastReturn] | 226 [Timeline, Inline=FastReturn] |
| 227 void didRecalculateStyleForElement(Element*); | 227 void didRecalculateStyleForElement(Element*); |
| 228 | 228 |
| 229 [Timeline, Resource, Inline=FastReturn] | 229 [Timeline, Resource, Inline=FastReturn] |
| 230 void didScheduleStyleRecalculation([Keep] Document*); | 230 void didScheduleStyleRecalculation([Keep] Document*); |
| 231 | 231 |
| 232 [CSS, Inline=FastReturn] | |
| 233 InspectorInstrumentationCookie willMatchRule(Document*, StyleRule*, Inspecto
rCSSOMWrappers&, DocumentStyleSheetCollection*); | |
| 234 | |
| 235 [CSS, Inline=FastReturn] | |
| 236 void didMatchRule(const InspectorInstrumentationCookie&, bool matched); | |
| 237 | |
| 238 [CSS, Inline=FastReturn] | |
| 239 InspectorInstrumentationCookie willProcessRule(Document* document, [FastRetu
rn] StyleRule* rule, StyleResolver* styleResolver); | |
| 240 | |
| 241 [CSS, Inline=FastReturn] | |
| 242 void didProcessRule(const InspectorInstrumentationCookie&); | |
| 243 | |
| 244 [Resource, Inline=FastReturn] | 232 [Resource, Inline=FastReturn] |
| 245 void applyUserAgentOverride(Frame*, String* userAgent); | 233 void applyUserAgentOverride(Frame*, String* userAgent); |
| 246 | 234 |
| 247 [Page, Inline=FastReturn] | 235 [Page, Inline=FastReturn] |
| 248 void applyScreenWidthOverride(Frame*, long* width); | 236 void applyScreenWidthOverride(Frame*, long* width); |
| 249 | 237 |
| 250 [Page, Inline=FastReturn] | 238 [Page, Inline=FastReturn] |
| 251 void applyScreenHeightOverride(Frame*, long* height); | 239 void applyScreenHeightOverride(Frame*, long* height); |
| 252 | 240 |
| 253 [Page, Inline=FastReturn] | 241 [Page, Inline=FastReturn] |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 311 |
| 324 [Timeline, Inspector, DOM, Page] | 312 [Timeline, Inspector, DOM, Page] |
| 325 void domContentLoadedEventFired([Keep] Frame*); | 313 void domContentLoadedEventFired([Keep] Frame*); |
| 326 | 314 |
| 327 [DOM, Timeline, Page] | 315 [DOM, Timeline, Page] |
| 328 void loadEventFired([Keep] Frame*); | 316 void loadEventFired([Keep] Frame*); |
| 329 | 317 |
| 330 [Canvas, Page, CSS] | 318 [Canvas, Page, CSS] |
| 331 void frameDetachedFromParent([Keep] Frame*); | 319 void frameDetachedFromParent([Keep] Frame*); |
| 332 | 320 |
| 333 [Page] | 321 [Page, Inline=FastReturn] |
| 334 void childDocumentOpened([Keep] Document*); | 322 void childDocumentOpened([Keep] Document*); |
| 335 | 323 |
| 336 [Console, Resource, CSS, Database, DOM, LayerTree, Inspector, Canvas, Page] | 324 [Console, Resource, CSS, Database, DOM, LayerTree, Inspector, Canvas, Page] |
| 337 void didCommitLoad([Keep] Frame*, DocumentLoader*); | 325 void didCommitLoad([Keep] Frame*, DocumentLoader*); |
| 338 | 326 |
| 339 [DOM, Inline=FastReturn] | 327 [DOM, Inline=FastReturn] |
| 340 void frameDocumentUpdated([Keep] Frame*); | 328 void frameDocumentUpdated([Keep] Frame*); |
| 341 | 329 |
| 342 [Page] | 330 [Page] |
| 343 void loaderDetachedFromFrame(Frame*, DocumentLoader*); | 331 void loaderDetachedFromFrame(Frame*, DocumentLoader*); |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 void didReceiveWebSocketFrameError(Document*, unsigned long identifier, cons
t String& errorMessage); | 403 void didReceiveWebSocketFrameError(Document*, unsigned long identifier, cons
t String& errorMessage); |
| 416 | 404 |
| 417 [ApplicationCache, Inline=FastReturn] | 405 [ApplicationCache, Inline=FastReturn] |
| 418 void networkStateChanged(Page*); | 406 void networkStateChanged(Page*); |
| 419 | 407 |
| 420 [ApplicationCache, Inline=FastReturn] | 408 [ApplicationCache, Inline=FastReturn] |
| 421 void updateApplicationCacheStatus([Keep] Frame*); | 409 void updateApplicationCacheStatus([Keep] Frame*); |
| 422 | 410 |
| 423 [LayerTree] | 411 [LayerTree] |
| 424 void layerTreeDidChange(Page*); | 412 void layerTreeDidChange(Page*); |
| 425 | |
| 426 [LayerTree] | |
| 427 void renderLayerDestroyed(Page*, const RenderLayer*); | |
| 428 | |
| 429 [LayerTree] | |
| 430 void pseudoElementDestroyed(Page*, PseudoElement*); | |
| 431 } | 413 } |
| 432 | 414 |
| 433 interface InspectorConsoleInstrumentation { | 415 interface InspectorConsoleInstrumentation { |
| 434 | 416 |
| 435 #include "core/inspector/ScriptArguments.h" | 417 #include "core/inspector/ScriptArguments.h" |
| 436 #include "core/inspector/ScriptCallStack.h" | 418 #include "core/inspector/ScriptCallStack.h" |
| 437 #include "core/inspector/ScriptProfile.h" | 419 #include "core/inspector/ScriptProfile.h" |
| 438 | 420 |
| 439 [Console, Debugger] // FIXME: Drop this once we no longer generate stacks o
utside of Inspector. | 421 [Console, Debugger] // FIXME: Drop this once we no longer generate stacks o
utside of Inspector. |
| 440 void addMessageToConsole(Page* page, MessageSource source, MessageType type,
MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStac
k, unsigned long requestIdentifier = 0); | 422 void addMessageToConsole(Page* page, MessageSource source, MessageType type,
MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStac
k, unsigned long requestIdentifier = 0); |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 interface InspectorCanvasInstrumentation { | 488 interface InspectorCanvasInstrumentation { |
| 507 | 489 |
| 508 #include "bindings/v8/ScriptObject.h" | 490 #include "bindings/v8/ScriptObject.h" |
| 509 | 491 |
| 510 [Canvas] | 492 [Canvas] |
| 511 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 493 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 512 | 494 |
| 513 [Canvas] | 495 [Canvas] |
| 514 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 496 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 515 } | 497 } |
| OLD | NEW |