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

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

Issue 1873323002: Have bindings layer assume and insist that all interface types are GCed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 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 GarbageCollected,
44 ] interface ClientRectList { 43 ] interface ClientRectList {
45 readonly attribute unsigned long length; 44 readonly attribute unsigned long length;
46 [MeasureAs=ClientRectListItem] ClientRect item(unsigned long index); 45 [MeasureAs=ClientRectListItem] ClientRect item(unsigned long index);
47 getter ClientRect (unsigned long index); 46 getter ClientRect (unsigned long index);
48 }; 47 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ClientRect.idl ('k') | third_party/WebKit/Source/core/dom/CompositorProxy.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698