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

Unified Diff: Source/bindings/tests/idls/TestSpecialOperationsCustom.idl

Issue 217053007: Revert of Make DOMWrapperWorld::current() return a reference instead of a pointer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revert 213543004 too Created 6 years, 9 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/bindings/tests/idls/TestSpecialOperationsCustom.idl
diff --git a/Source/modules/webdatabase/SQLResultSetRowList.idl b/Source/bindings/tests/idls/TestSpecialOperationsCustom.idl
similarity index 79%
copy from Source/modules/webdatabase/SQLResultSetRowList.idl
copy to Source/bindings/tests/idls/TestSpecialOperationsCustom.idl
index 14fd5cccab4d4ac6efab161afb8e20a21c033487..866675be3c26443c5aacd7d0bbedb9ad601b0038 100644
--- a/Source/modules/webdatabase/SQLResultSetRowList.idl
+++ b/Source/bindings/tests/idls/TestSpecialOperationsCustom.idl
@@ -26,10 +26,11 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-[
- NoInterfaceObject,
- WillBeGarbageCollected,
-] interface SQLResultSetRowList {
- readonly attribute unsigned long length;
- [Custom] object item(unsigned long index);
+interface TestSpecialOperationsCustom {
+ [Custom] getter boolean (unsigned long index);
+ [Custom] setter boolean (unsigned long index, Node value);
+ [Custom] deleter boolean (unsigned long index);
+ [Custom=PropertyGetter|PropertyEnumerator|PropertyQuery] getter Node (DOMString name);
+ [Custom] setter Node (DOMString name, Node value);
+ [Custom] deleter boolean (DOMString name);
};

Powered by Google App Engine
This is Rietveld 408576698