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

Unified Diff: third_party/WebCore/bindings/scripts/test/TestObj.idl

Issue 10769002: Roll IDL to multivm@683 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix notifications path in fremontcut. Created 8 years, 5 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 | « third_party/WebCore/README ('k') | third_party/WebCore/css/CSSRule.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/bindings/scripts/test/TestObj.idl
diff --git a/third_party/WebCore/bindings/scripts/test/TestObj.idl b/third_party/WebCore/bindings/scripts/test/TestObj.idl
index ef342f8be659510b391dad661fb6247fe21bd21c..513df107400a9329338cbf8c786ce4b376b15421 100644
--- a/third_party/WebCore/bindings/scripts/test/TestObj.idl
+++ b/third_party/WebCore/bindings/scripts/test/TestObj.idl
@@ -163,12 +163,14 @@ module test {
#if defined(TESTING_V8) || defined(TESTING_JS)
// Overloads
- void overloadedMethod(in TestObj objArg, in DOMString strArg);
- void overloadedMethod(in TestObj objArg, in [Optional] long intArg);
+ void overloadedMethod(in TestObj? objArg, in DOMString strArg);
+ void overloadedMethod(in TestObj? objArg, in [Optional] long intArg);
void overloadedMethod(in DOMString strArg);
void overloadedMethod(in long intArg);
void overloadedMethod(in [Callback] TestCallback callback);
- void overloadedMethod(in DOMStringList listArg);
+ void overloadedMethod(in DOMStringList? listArg);
+ void overloadedMethod(in DOMString[]? arrayArg);
+ void overloadedMethod(in TestObj objArg);
void overloadedMethod(in DOMString[] arrayArg);
#endif
« no previous file with comments | « third_party/WebCore/README ('k') | third_party/WebCore/css/CSSRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698