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

Unified Diff: Source/core/page/ConsoleBase.h

Issue 24027002: DevTools: implement console.timeline/timelineEnd. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review comments addressed. Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/page/ConsoleBase.h
diff --git a/Source/core/page/ConsoleBase.h b/Source/core/page/ConsoleBase.h
index 07a69552db7af90da16057f9d3d0242a6596125d..4fcd97157966ba02ab00005ebb40051844c04fec 100644
--- a/Source/core/page/ConsoleBase.h
+++ b/Source/core/page/ConsoleBase.h
@@ -61,12 +61,14 @@ public:
void trace(ScriptState*, PassRefPtr<ScriptArguments>);
void assertCondition(ScriptState*, PassRefPtr<ScriptArguments>, bool condition);
void count(ScriptState*, PassRefPtr<ScriptArguments>);
- void markTimeline(PassRefPtr<ScriptArguments>);
+ void markTimeline(const String&);
void profile(ScriptState*, const String&);
void profileEnd(ScriptState*, const String&);
void time(const String&);
void timeEnd(ScriptState*, const String&);
- void timeStamp(PassRefPtr<ScriptArguments>);
+ void timeStamp(const String&);
+ void timeline(ScriptState*, const String&);
+ void timelineEnd(ScriptState*, const String&);
void group(ScriptState*, PassRefPtr<ScriptArguments>);
void groupCollapsed(ScriptState*, PassRefPtr<ScriptArguments>);
void groupEnd();

Powered by Google App Engine
This is Rietveld 408576698