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

Side by Side Diff: Source/core/dom/ClientRectList.idl

Issue 1104243003: Oilpan: put ClientRect(List) on the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove transition types uses also Created 5 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2009 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 22 matching lines...) Expand all
33 // http://dev.w3.org/fxtf/geometry/#DOMRectList 33 // http://dev.w3.org/fxtf/geometry/#DOMRectList
34 34
35 // CSSOM View Module also says: "The DOMRectList interface is at-risk. 35 // CSSOM View Module also says: "The DOMRectList interface is at-risk.
36 // The authors of this specification await feedback from implementers 36 // The authors of this specification await feedback from implementers
37 // if the item() function of DOMRectList is currently in use on legacy 37 // if the item() function of DOMRectList is currently in use on legacy
38 // interfaces. If there is no/not enough content to justify 38 // interfaces. If there is no/not enough content to justify
39 // DOMRectList, legacy interfaces must use sequences instead and 39 // DOMRectList, legacy interfaces must use sequences instead and
40 // DOMRectList will be removed from this specification." 40 // DOMRectList will be removed from this specification."
41 41
42 [ 42 [
43 WillBeGarbageCollected, 43 GarbageCollected,
44 ] interface ClientRectList { 44 ] interface ClientRectList {
45 readonly attribute unsigned long length; 45 readonly attribute unsigned long length;
46 [MeasureAs=ClientRectListItem] ClientRect item(unsigned long index); 46 [MeasureAs=ClientRectListItem] ClientRect item(unsigned long index);
47 getter ClientRect (unsigned long index); 47 getter ClientRect (unsigned long index);
48 }; 48 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698