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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 | 352 |
353 [Worker, PageConsole] | 353 [Worker, PageConsole] |
354 void workerTerminated(ExecutionContext*, WorkerInspectorProxy* proxy); | 354 void workerTerminated(ExecutionContext*, WorkerInspectorProxy* proxy); |
355 | 355 |
356 [Profiler] | 356 [Profiler] |
357 void willProcessTask(WorkerGlobalScope* context); | 357 void willProcessTask(WorkerGlobalScope* context); |
358 | 358 |
359 [Profiler] | 359 [Profiler] |
360 void didProcessTask(WorkerGlobalScope* context); | 360 void didProcessTask(WorkerGlobalScope* context); |
361 | 361 |
362 [Profiler] | |
363 void willEnterNestedRunLoop(WorkerGlobalScope* context); | |
364 | |
365 [Profiler] | |
366 void didLeaveNestedRunLoop(WorkerGlobalScope* context); | |
367 | |
368 [Resource] | 362 [Resource] |
369 void didCreateWebSocket([Keep] Document*, unsigned long identifier, const KU
RL& requestURL, const String& protocol); | 363 void didCreateWebSocket([Keep] Document*, unsigned long identifier, const KU
RL& requestURL, const String& protocol); |
370 | 364 |
371 [Resource] | 365 [Resource] |
372 void willSendWebSocketHandshakeRequest([Keep] Document*, unsigned long ident
ifier, const WebSocketHandshakeRequest* request); | 366 void willSendWebSocketHandshakeRequest([Keep] Document*, unsigned long ident
ifier, const WebSocketHandshakeRequest* request); |
373 | 367 |
374 [Resource] | 368 [Resource] |
375 void didReceiveWebSocketHandshakeResponse([Keep] Document*, unsigned long id
entifier, const WebSocketHandshakeRequest* request, const WebSocketHandshakeResp
onse* response); | 369 void didReceiveWebSocketHandshakeResponse([Keep] Document*, unsigned long id
entifier, const WebSocketHandshakeRequest* request, const WebSocketHandshakeResp
onse* response); |
376 | 370 |
377 [Resource] | 371 [Resource] |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 interface InspectorOverrides { | 442 interface InspectorOverrides { |
449 [CSS, Inline=FastReturn] | 443 [CSS, Inline=FastReturn] |
450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
451 | 445 |
452 [Worker, Inline=FastReturn] | 446 [Worker, Inline=FastReturn] |
453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
454 | 448 |
455 [Resource, Inline=FastReturn] | 449 [Resource, Inline=FastReturn] |
456 bool shouldForceCORSPreflight(Document*); | 450 bool shouldForceCORSPreflight(Document*); |
457 } | 451 } |
OLD | NEW |