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

Side by Side Diff: Source/core/frame/Window.idl

Issue 1344053002: Add UMA tracing to requestIdleCallback. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix overrun UMA name Created 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/frame/UseCounter.h ('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) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google 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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 // user prompts 74 // user prompts
75 [Measure] void alert(); 75 [Measure] void alert();
76 [Measure] void alert(DOMString message); 76 [Measure] void alert(DOMString message);
77 [Measure] boolean confirm(optional DOMString message = ""); 77 [Measure] boolean confirm(optional DOMString message = "");
78 [Measure] DOMString? prompt(optional DOMString message = "", optional DOMStr ing defaultValue = ""); 78 [Measure] DOMString? prompt(optional DOMString message = "", optional DOMStr ing defaultValue = "");
79 [Measure] void print(); 79 [Measure] void print();
80 80
81 [MeasureAs=UnprefixedRequestAnimationFrame] long requestAnimationFrame(Frame RequestCallback callback); 81 [MeasureAs=UnprefixedRequestAnimationFrame] long requestAnimationFrame(Frame RequestCallback callback);
82 void cancelAnimationFrame(long handle); 82 void cancelAnimationFrame(long handle);
83 83
84 [RuntimeEnabled=RequestIdleCallback] long requestIdleCallback(IdleRequestCal lback callback, optional double timeout = 0); 84 [Measure, RuntimeEnabled=RequestIdleCallback] long requestIdleCallback(IdleR equestCallback callback, optional double timeout = 0);
85 [RuntimeEnabled=RequestIdleCallback] void cancelIdleCallback(long handle); 85 [RuntimeEnabled=RequestIdleCallback] void cancelIdleCallback(long handle);
86 86
87 [DoNotCheckSecurity, Custom, RaisesException] void postMessage(any message, DOMString targetOrigin, optional sequence<Transferable> transfer); 87 [DoNotCheckSecurity, Custom, RaisesException] void postMessage(any message, DOMString targetOrigin, optional sequence<Transferable> transfer);
88 88
89 // HTML obsolete features 89 // HTML obsolete features
90 // https://html.spec.whatwg.org/#Window-partial 90 // https://html.spec.whatwg.org/#Window-partial
91 [MeasureAs=WindowCaptureEvents] void captureEvents(); 91 [MeasureAs=WindowCaptureEvents] void captureEvents();
92 [MeasureAs=WindowReleaseEvents] void releaseEvents(); 92 [MeasureAs=WindowReleaseEvents] void releaseEvents();
93 93
94 // CSS Object Model (CSSOM) 94 // CSS Object Model (CSSOM)
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 // FIXME: make this typedef accurate once enough of http://crbug.com/240176 201 // FIXME: make this typedef accurate once enough of http://crbug.com/240176
202 // is in place. 202 // is in place.
203 // FIXME: consider putting this typedef in an .idl file containing spec-wide 203 // FIXME: consider putting this typedef in an .idl file containing spec-wide
204 // utility type definitions. 204 // utility type definitions.
205 typedef MessagePort Transferable; 205 typedef MessagePort Transferable;
206 206
207 Window implements GlobalEventHandlers; 207 Window implements GlobalEventHandlers;
208 Window implements WindowBase64; 208 Window implements WindowBase64;
209 Window implements WindowEventHandlers; 209 Window implements WindowEventHandlers;
210 Window implements WindowTimers; 210 Window implements WindowTimers;
OLDNEW
« no previous file with comments | « Source/core/frame/UseCounter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698