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

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

Issue 1085033003: Introduce InspectorIdentifiers<> and use it to assign/lookup LocalFrame and DocumentLoader (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: win build error fixed Created 5 years, 8 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 | Annotate | Revision Log
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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 [Page] 308 [Page]
309 void frameDetachedFromParent([Keep] LocalFrame*); 309 void frameDetachedFromParent([Keep] LocalFrame*);
310 310
311 [Resource, DOM, Page] 311 [Resource, DOM, Page]
312 void didCommitLoad([Keep] LocalFrame*, DocumentLoader*); 312 void didCommitLoad([Keep] LocalFrame*, DocumentLoader*);
313 313
314 [DOM, Inline=FastReturn] 314 [DOM, Inline=FastReturn]
315 void frameDocumentUpdated([Keep] LocalFrame*); 315 void frameDocumentUpdated([Keep] LocalFrame*);
316 316
317 [Page] 317 [Page]
318 void loaderDetachedFromFrame(LocalFrame*, DocumentLoader*);
319
320 [Page]
321 void frameStartedLoading([Keep] LocalFrame*); 318 void frameStartedLoading([Keep] LocalFrame*);
322 319
323 [Page] 320 [Page]
324 void frameStoppedLoading([Keep] LocalFrame*); 321 void frameStoppedLoading([Keep] LocalFrame*);
325 322
326 [Page, Resource] 323 [Page, Resource]
327 void frameScheduledNavigation([Keep] LocalFrame*, double delay); 324 void frameScheduledNavigation([Keep] LocalFrame*, double delay);
328 325
329 [Page, Resource] 326 [Page, Resource]
330 void frameClearedScheduledNavigation([Keep] LocalFrame*); 327 void frameClearedScheduledNavigation([Keep] LocalFrame*);
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 interface InspectorOverrides { 448 interface InspectorOverrides {
452 [CSS, Inline=FastReturn] 449 [CSS, Inline=FastReturn]
453 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
454 451
455 [Worker, Inline=FastReturn] 452 [Worker, Inline=FastReturn]
456 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
457 454
458 [Resource, Inline=FastReturn] 455 [Resource, Inline=FastReturn]
459 bool shouldForceCORSPreflight(Document*); 456 bool shouldForceCORSPreflight(Document*);
460 } 457 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorIdentifiers.h ('k') | Source/core/inspector/InspectorPageAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698