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

Side by Side Diff: Source/core/timing/Performance.idl

Issue 130213008: Remove window.performance.webkit* (PrefixedUserTiming) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | no next file » | 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2012 Intel Inc. All rights reserved. 3 * Copyright (C) 2012 Intel Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 attribute EventHandler onwebkitresourcetimingbufferfull; 48 attribute EventHandler onwebkitresourcetimingbufferfull;
49 49
50 // See http://www.w3.org/TR/2012/CR-user-timing-20120726/ 50 // See http://www.w3.org/TR/2012/CR-user-timing-20120726/
51 [RaisesException,MeasureAs=UnprefixedUserTiming] void mark(DOMString markNam e); 51 [RaisesException,MeasureAs=UnprefixedUserTiming] void mark(DOMString markNam e);
52 [MeasureAs=UnprefixedUserTiming] void clearMarks([Default=NullString] option al DOMString markName); 52 [MeasureAs=UnprefixedUserTiming] void clearMarks([Default=NullString] option al DOMString markName);
53 53
54 [RaisesException,MeasureAs=UnprefixedUserTiming] void measure(DOMString meas ureName, [Default=NullString] optional DOMString startMark, [Default=NullString] optional DOMString endMark); 54 [RaisesException,MeasureAs=UnprefixedUserTiming] void measure(DOMString meas ureName, [Default=NullString] optional DOMString startMark, [Default=NullString] optional DOMString endMark);
55 [MeasureAs=UnprefixedUserTiming] void clearMeasures([Default=NullString] opt ional DOMString measureName); 55 [MeasureAs=UnprefixedUserTiming] void clearMeasures([Default=NullString] opt ional DOMString measureName);
56 56
57 [RaisesException,DeprecateAs=PrefixedUserTiming,ImplementedAs=mark] void web kitMark(DOMString markName);
58 [DeprecateAs=PrefixedUserTiming,ImplementedAs=clearMarks] void webkitClearMa rks([Default=NullString] optional DOMString markName);
59
60 [RaisesException,DeprecateAs=PrefixedUserTiming,ImplementedAs=measure] void webkitMeasure(DOMString measureName, [Default=NullString] optional DOMString sta rtMark, [Default=NullString] optional DOMString endMark);
61 [DeprecateAs=PrefixedUserTiming,ImplementedAs=clearMeasures] void webkitClea rMeasures([Default=NullString] optional DOMString measureName);
62
63 // See http://www.w3.org/TR/hr-time/ for details. 57 // See http://www.w3.org/TR/hr-time/ for details.
64 double now(); 58 double now();
65 }; 59 };
66 60
OLDNEW
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698