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

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

Issue 1180843006: [DevTools] Add dialog type and return value to Page.javascriptDialog{Opening,Closed}. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: frontend Created 5 years, 6 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 [Page] 320 [Page]
321 void frameStoppedLoading([Keep] LocalFrame*); 321 void frameStoppedLoading([Keep] LocalFrame*);
322 322
323 [Page, Resource] 323 [Page, Resource]
324 void frameScheduledNavigation([Keep] LocalFrame*, double delay); 324 void frameScheduledNavigation([Keep] LocalFrame*, double delay);
325 325
326 [Page, Resource] 326 [Page, Resource]
327 void frameClearedScheduledNavigation([Keep] LocalFrame*); 327 void frameClearedScheduledNavigation([Keep] LocalFrame*);
328 328
329 [Page, Inline=FastReturn] 329 [Page, Inline=FastReturn]
330 InspectorInstrumentationCookie willRunJavaScriptDialog(LocalFrame*, const St ring& message); 330 InspectorInstrumentationCookie willRunJavaScriptDialog(LocalFrame*, const St ring& message, ChromeClient::DialogType dialogType);
331 331
332 [Page, Inline=FastReturn] 332 [Page, Inline=FastReturn]
333 void didRunJavaScriptDialog(const InspectorInstrumentationCookie&); 333 void didRunJavaScriptDialog(const InspectorInstrumentationCookie&, bool resu lt);
334 334
335 [Inline=Forward] 335 [Inline=Forward]
336 void willDestroyResource(Resource* cachedResource); 336 void willDestroyResource(Resource* cachedResource);
337 337
338 [AsyncCallTracker, DOMDebugger] 338 [AsyncCallTracker, DOMDebugger]
339 void didRequestAnimationFrame([Keep] ExecutionContext*, int callbackId); 339 void didRequestAnimationFrame([Keep] ExecutionContext*, int callbackId);
340 340
341 [AsyncCallTracker, DOMDebugger] 341 [AsyncCallTracker, DOMDebugger]
342 void didCancelAnimationFrame([Keep] ExecutionContext*, int callbackId); 342 void didCancelAnimationFrame([Keep] ExecutionContext*, int callbackId);
343 343
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 interface InspectorOverrides { 448 interface InspectorOverrides {
449 [CSS, Inline=FastReturn] 449 [CSS, Inline=FastReturn]
450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
451 451
452 [Worker, Inline=FastReturn] 452 [Worker, Inline=FastReturn]
453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
454 454
455 [Resource, Inline=FastReturn] 455 [Resource, Inline=FastReturn]
456 bool shouldForceCORSPreflight(Document*); 456 bool shouldForceCORSPreflight(Document*);
457 } 457 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.h ('k') | Source/core/inspector/InspectorPageAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698