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

Side by Side Diff: Source/bindings/tests/idls/TestObject.idl

Issue 27207002: Add support for [PutForwards] IDL extended attribute (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix bindings generator Created 7 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary formstrArg, with or without 5 * Redistribution and use in source and binary formstrArg, 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 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 // DeprecateAs 297 // DeprecateAs
298 [DeprecateAs=StaticReadonlyAttribute] static readonly attribute long depreca tedStaticReadOnlyAttr; 298 [DeprecateAs=StaticReadonlyAttribute] static readonly attribute long depreca tedStaticReadOnlyAttr;
299 [DeprecateAs=StaticAttribute] static attribute long deprecatedStaticAttr; 299 [DeprecateAs=StaticAttribute] static attribute long deprecatedStaticAttr;
300 [DeprecateAs=ReadonlyAttribute] readonly attribute long deprecatedReadonlyAt tr; 300 [DeprecateAs=ReadonlyAttribute] readonly attribute long deprecatedReadonlyAt tr;
301 [DeprecateAs=Attribute] attribute long deprecatedAttr; 301 [DeprecateAs=Attribute] attribute long deprecatedAttr;
302 302
303 [DeprecateAs=Method] void deprecatedMethod(); 303 [DeprecateAs=Method] void deprecatedMethod();
304 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); 304 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod();
305 305
306 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; 306 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1;
307
308 // PutForwards
309 [PutForwards=href] readonly attribute TestNode location;
310 [PutForwards=hrefThrows] readonly attribute TestNode locationWithException;
307 }; 311 };
308 312
309 // The following comment should not generate any code 313 // The following comment should not generate any code
310 // TestObject implements TestImplements; 314 // TestObject implements TestImplements;
311 315
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698