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

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

Issue 477313002: DevTools: Extract WorkerInspectorProxy interface from WorkerGlobalScopeProxy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Comments addressed. Created 6 years, 4 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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 [DOMDebugger, Debugger, Timeline] 385 [DOMDebugger, Debugger, Timeline]
386 InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId); 386 InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId);
387 387
388 [Timeline, Debugger, Inline=FastReturn] 388 [Timeline, Debugger, Inline=FastReturn]
389 void didFireAnimationFrame(const InspectorInstrumentationCookie&); 389 void didFireAnimationFrame(const InspectorInstrumentationCookie&);
390 390
391 [DOMStorage, Inline=FastReturn] 391 [DOMStorage, Inline=FastReturn]
392 void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* secu rityOrigin); 392 void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* secu rityOrigin);
393 393
394 [Worker] 394 [Worker]
395 void didStartWorkerGlobalScope(ExecutionContext*, WorkerGlobalScopeProxy* pr oxy, const KURL& url); 395 void didStartWorker(ExecutionContext*, WorkerInspectorProxy* proxy, const KU RL& url);
396
397 [Worker]
398 void workerTerminated(ExecutionContext*, WorkerInspectorProxy* proxy);
396 399
397 [WorkerRuntime] 400 [WorkerRuntime]
398 void willEvaluateWorkerScript([Keep] WorkerGlobalScope* context, int workerT hreadStartMode); 401 void willEvaluateWorkerScript([Keep] WorkerGlobalScope* context, int workerT hreadStartMode);
399 402
400 [Worker]
401 void workerGlobalScopeTerminated(ExecutionContext*, WorkerGlobalScopeProxy* proxy);
402
403 [Profiler, Timeline] 403 [Profiler, Timeline]
404 void willProcessTask(WorkerGlobalScope* context); 404 void willProcessTask(WorkerGlobalScope* context);
405 405
406 [Profiler, Timeline] 406 [Profiler, Timeline]
407 void didProcessTask(WorkerGlobalScope* context); 407 void didProcessTask(WorkerGlobalScope* context);
408 408
409 [Profiler] 409 [Profiler]
410 void willEnterNestedRunLoop(WorkerGlobalScope* context); 410 void willEnterNestedRunLoop(WorkerGlobalScope* context);
411 411
412 [Profiler] 412 [Profiler]
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 interface InspectorCanvasInstrumentation { 528 interface InspectorCanvasInstrumentation {
529 529
530 #include "bindings/core/v8/ScriptValue.h" 530 #include "bindings/core/v8/ScriptValue.h"
531 531
532 [Canvas] 532 [Canvas]
533 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 533 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
534 534
535 [Canvas] 535 [Canvas]
536 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 536 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
537 } 537 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.h ('k') | Source/core/inspector/InspectorWorkerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698