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

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

Issue 750983003: DevTools: remove Console.setTracingBasedTimeline call from startup. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments addressed Created 6 years 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
« no previous file with comments | « Source/core/inspector/InspectorController.cpp ('k') | Source/core/inspector/PageConsoleAgent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 489
490 [Timeline] 490 [Timeline]
491 void consoleTime([Keep] ExecutionContext* context, const String& title); 491 void consoleTime([Keep] ExecutionContext* context, const String& title);
492 492
493 [Timeline] 493 [Timeline]
494 void consoleTimeEnd([Keep] ExecutionContext* context, const String& title, S criptState* state); 494 void consoleTimeEnd([Keep] ExecutionContext* context, const String& title, S criptState* state);
495 495
496 [Timeline, Inline=FastReturn] 496 [Timeline, Inline=FastReturn]
497 void consoleTimeStamp([Keep] ExecutionContext* context, const String& title) ; 497 void consoleTimeStamp([Keep] ExecutionContext* context, const String& title) ;
498 498
499 [Console, Inline=FastReturn]
500 void consoleTimeline([Keep] ExecutionContext* context, const String& title, ScriptState* state);
501
502 [Console, Inline=FastReturn]
503 void consoleTimelineEnd([Keep] ExecutionContext* context, const String& titl e, ScriptState* state);
504
505 [Profiler, Inline=FastReturn] 499 [Profiler, Inline=FastReturn]
506 void consoleProfile([Keep] ExecutionContext* context, const String& title); 500 void consoleProfile([Keep] ExecutionContext* context, const String& title);
507 501
508 [Profiler, Inline=FastReturn] 502 [Profiler, Inline=FastReturn]
509 void consoleProfileEnd(ExecutionContext* context, const String& title); 503 void consoleProfileEnd(ExecutionContext* context, const String& title);
510 504
511 [Console] 505 [Console]
512 void consoleMessagesCleared(FrameHost* frameHost); 506 void consoleMessagesCleared(FrameHost* frameHost);
513 507
514 [Console] 508 [Console]
(...skipping 15 matching lines...) Expand all
530 interface InspectorCanvasInstrumentation { 524 interface InspectorCanvasInstrumentation {
531 525
532 #include "bindings/core/v8/ScriptValue.h" 526 #include "bindings/core/v8/ScriptValue.h"
533 527
534 [Canvas] 528 [Canvas]
535 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 529 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
536 530
537 [Canvas] 531 [Canvas]
538 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 532 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
539 } 533 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorController.cpp ('k') | Source/core/inspector/PageConsoleAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698