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

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

Issue 27638002: IDL compiler: Basic setters (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix ; 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/templates/interface_base.cpp ('k') | Source/bindings/tests/results/V8TestObjectPython.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/idls/TestObjectPython.idl
diff --git a/Source/bindings/tests/idls/TestObjectPython.idl b/Source/bindings/tests/idls/TestObjectPython.idl
index 51dd3ce0b39319c6d3dbd1baf234c4dad01d1cc9..fdd3e33353e94313887553c1ea6bebd198877273 100644
--- a/Source/bindings/tests/idls/TestObjectPython.idl
+++ b/Source/bindings/tests/idls/TestObjectPython.idl
@@ -33,24 +33,29 @@ enum TestEnum {"", "EnumValue1", "EnumValue2", "EnumValue3"};
interface TestObjectPython {
// TestInterfaceEmpty is used as a stub interface type, for testing behavior
// that should not depend on particular type (beyond "interface or not").
+ // readonly
+ readonly attribute DOMString readonlyStringAttribute;
+ readonly attribute TestInterfaceEmpty readonlyTestInterfaceEmptyAttribute;
+ readonly attribute long readonlyLongAttribute;
+ // Basic types
readonly attribute Date readonlyDateAttribute;
readonly attribute DOMString readonlyStringAttribute;
readonly attribute DOMTimeStamp readonlyDOMTimeStampAttribute;
- readonly attribute boolean readonlyBooleanAttribute;
- readonly attribute byte readonlyByteAttribute;
- readonly attribute double readonlyDoubleAttribute;
- readonly attribute float readonlyFloatAttribute;
- readonly attribute long readonlyLongAttribute;
- readonly attribute long long readonlyLongLongAttribute;
- readonly attribute octet readonlyOctetAttribute;
- readonly attribute short readonlyShortAttribute;
- readonly attribute unsigned long readonlyUnsignedLongAttribute;
- readonly attribute unsigned long long readonlyUnsignedLongLongAttribute;
- readonly attribute unsigned short readonlyUnsignedShortAttribute;
+ attribute boolean booleanAttribute;
+ attribute byte byteAttribute;
+ attribute double doubleAttribute;
+ attribute float floatAttribute;
+ attribute long longAttribute;
+ attribute long long longLongAttribute;
+ attribute octet octetAttribute;
+ attribute short shortAttribute;
+ attribute unsigned long unsignedLongAttribute;
+ attribute unsigned long long unsignedLongLongAttribute;
+ attribute unsigned short unsignedShortAttribute;
// Non-wrapper types
readonly attribute NodeFilter readonlyNodeFilterAttribute;
readonly attribute SerializedScriptValue readonlySerializedScriptValueAttribute;
- readonly attribute any readonlyAnyAttribute;
+ attribute any anyAttribute;
// DOM Node types
readonly attribute Document readonlyDocumentAttribute;
readonly attribute DocumentFragment readonlyDocumentFragmentAttribute;
« no previous file with comments | « Source/bindings/templates/interface_base.cpp ('k') | Source/bindings/tests/results/V8TestObjectPython.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698